mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
mfd: Fix ab4500 compilation warnings
When building the driver as a module, module_exit was missing, and subsys_initcall_sync() is not defined. Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
parent
0c41839e98
commit
956266da70
1 changed files with 2 additions and 1 deletions
|
@ -200,7 +200,8 @@ static void __exit ab4500_exit(void)
|
||||||
spi_unregister_driver(&ab4500_driver);
|
spi_unregister_driver(&ab4500_driver);
|
||||||
}
|
}
|
||||||
|
|
||||||
subsys_initcall_sync(ab4500_init);
|
subsys_initcall(ab4500_init);
|
||||||
|
module_exit(ab4500_exit);
|
||||||
|
|
||||||
MODULE_AUTHOR("Srinidhi KASAGAR <srinidhi.kasagar@stericsson.com");
|
MODULE_AUTHOR("Srinidhi KASAGAR <srinidhi.kasagar@stericsson.com");
|
||||||
MODULE_DESCRIPTION("AB4500 core driver");
|
MODULE_DESCRIPTION("AB4500 core driver");
|
||||||
|
|
Loading…
Reference in a new issue