diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2012-07-30 17:41:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-30 20:25:18 -0400 |
commit | 0f636fc16f80fe64261ce39440e49a259ff2b0da (patch) | |
tree | 07793e008d9254b695dcad794d36b481e2625eef /drivers/rtc/rtc-mc13xxx.c | |
parent | dbd9acbef2f178e74c2f2def23eb4e8c2bd14270 (diff) |
rtc/mc13xxx: use MODULE_DEVICE_TABLE instead of MODULE_ALIAS
This allows automatic driver loading for all supported device types.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/rtc-mc13xxx.c')
-rw-r--r-- | drivers/rtc/rtc-mc13xxx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-mc13xxx.c b/drivers/rtc/rtc-mc13xxx.c index 546f6850bffb..0ce060280e6b 100644 --- a/drivers/rtc/rtc-mc13xxx.c +++ b/drivers/rtc/rtc-mc13xxx.c | |||
@@ -405,8 +405,9 @@ static const struct platform_device_id mc13xxx_rtc_idtable[] = { | |||
405 | }, { | 405 | }, { |
406 | .name = "mc13892-rtc", | 406 | .name = "mc13892-rtc", |
407 | }, | 407 | }, |
408 | { } | 408 | { /* sentinel */ } |
409 | }; | 409 | }; |
410 | MODULE_DEVICE_TABLE(platform, mc13xxx_rtc_idtable); | ||
410 | 411 | ||
411 | static struct platform_driver mc13xxx_rtc_driver = { | 412 | static struct platform_driver mc13xxx_rtc_driver = { |
412 | .id_table = mc13xxx_rtc_idtable, | 413 | .id_table = mc13xxx_rtc_idtable, |
@@ -432,4 +433,3 @@ module_exit(mc13xxx_rtc_exit); | |||
432 | MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>"); | 433 | MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>"); |
433 | MODULE_DESCRIPTION("RTC driver for Freescale MC13XXX PMIC"); | 434 | MODULE_DESCRIPTION("RTC driver for Freescale MC13XXX PMIC"); |
434 | MODULE_LICENSE("GPL v2"); | 435 | MODULE_LICENSE("GPL v2"); |
435 | MODULE_ALIAS("platform:" DRIVER_NAME); | ||