From: Atsushi Nemoto Date: Tue, 16 Oct 2007 08:28:17 +0000 (-0700) Subject: rtc: make rtc-ds1553 driver hotplug-aware X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=e7634c271a1cb460ba3a09b47ecc246c11a66cee;p=linux-edison.git 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 Cc: Alessandro Zummo Cc: David Brownell Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- 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 = { .probe = ds1553_rtc_probe, .remove = __devexit_p(ds1553_rtc_remove), .driver = { - .name = "ds1553", + .name = "rtc-ds1553", .owner = THIS_MODULE, }, };