mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
Input: gpio_keys - move to late_initcall
Initialize gpio_keys driver at late_initcall level, to give it a chance to work with GPIO expanders that might not be ready yet if we initialize the driver at module_init time. This is strictly a band-aid until there is a better way to specify inter-device dependencies. Signed-off-by: David Jander <david@protonic.nl> Acked-by: Grant Likely <grant.likely@secretlab.ca> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
parent
6a592a7f45
commit
b23302052d
@ -644,7 +644,7 @@ static void __exit gpio_keys_exit(void)
|
|||||||
platform_driver_unregister(&gpio_keys_device_driver);
|
platform_driver_unregister(&gpio_keys_device_driver);
|
||||||
}
|
}
|
||||||
|
|
||||||
module_init(gpio_keys_init);
|
late_initcall(gpio_keys_init);
|
||||||
module_exit(gpio_keys_exit);
|
module_exit(gpio_keys_exit);
|
||||||
|
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
|
Loading…
Reference in New Issue
Block a user