aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-ds1553.c
diff options
context:
space:
mode:
authorAtsushi Nemoto <anemo@mba.ocn.ne.jp>2007-10-16 04:28:17 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-16 12:43:13 -0400
commite7634c271a1cb460ba3a09b47ecc246c11a66cee (patch)
tree56bb70879182db1341c9eb53edf8eb1d7c62ee6e /drivers/rtc/rtc-ds1553.c
parent88efe137394f58fb5893013e123e4bcf444fd44b (diff)
rtc: make rtc-ds1553 driver hotplug-aware
The rtc-ds1553 platform driver name doesn't match its module name, which might prevent it from properly hotplugging. This driver has no in-tree users. Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Cc: Alessandro Zummo <a.zummo@towertech.it> Cc: David Brownell <david-b@pacbell.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/rtc-ds1553.c')
-rw-r--r--drivers/rtc/rtc-ds1553.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-ds1553.c b/drivers/rtc/rtc-ds1553.c
index 5ab3492817d..bb53c09bad1 100644
--- a/drivers/rtc/rtc-ds1553.c
+++ b/drivers/rtc/rtc-ds1553.c
@@ -395,7 +395,7 @@ static struct platform_driver ds1553_rtc_driver = {
395 .probe = ds1553_rtc_probe, 395 .probe = ds1553_rtc_probe,
396 .remove = __devexit_p(ds1553_rtc_remove), 396 .remove = __devexit_p(ds1553_rtc_remove),
397 .driver = { 397 .driver = {
398 .name = "ds1553", 398 .name = "rtc-ds1553",
399 .owner = THIS_MODULE, 399 .owner = THIS_MODULE,
400 }, 400 },
401}; 401};