diff options
author | Pali Rohár <[email protected]> | 2014-09-25 16:05:22 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2014-09-26 08:10:35 -0700 |
commit | 451ff6d40929c0d63e4fd22145160953b81a7dd2 (patch) | |
tree | 07c339731c0cd599e8b4f929c1cdcf1e1cadf9c7 | |
parent | d4a5fca592b9ab52b90bb261a90af3c8f53be011 (diff) |
drivers/rtc/rtc-efi.c: add missing module alias
Without proper alias kernel module is not loaded for rtc-efi driver.
Signed-off-by: Pali Rohár <[email protected]>
Cc: dann frazier <[email protected]>
Cc: Alessandro Zummo <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | drivers/rtc/rtc-efi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/rtc/rtc-efi.c b/drivers/rtc/rtc-efi.c index 8225b89de810..c384fec6d173 100644 --- a/drivers/rtc/rtc-efi.c +++ b/drivers/rtc/rtc-efi.c @@ -232,6 +232,7 @@ static struct platform_driver efi_rtc_driver = { module_platform_driver_probe(efi_rtc_driver, efi_rtc_probe); +MODULE_ALIAS("platform:rtc-efi"); MODULE_AUTHOR("dann frazier <[email protected]>"); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("EFI RTC driver"); |