[PATCH] rtc: Make rtc-ds1742 driver hotplug-aware (take 2)

Previous thread: [PATCH] rtc: Make rtc-ds1553 driver hotplug-aware (take 3) by Atsushi Nemoto on Sunday, August 19, 2007 - 9:32 am. (1 message)

Next thread: sched.c: why -fno-omit-frame-pointer? by Adrian Bunk on Sunday, August 19, 2007 - 10:17 am. (4 messages)
To: <a.zummo@...>
Cc: <linux-kernel@...>, <rtc-linux@...>, <dbrownell@...>, <ralf@...>, Kay Sievers <kay.sievers@...>, Torsten Ertbjerg Rasmussen <tr@...>
Date: Sunday, August 19, 2007 - 9:32 am

The rtc-ds1742 platform driver name doesn't match its module name,
which might prevents it from properly hotplugging. There is only two
in-tree user of its driver, which are fixed by this patch too.

Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
---
arch/mips/jmr3927/rbhma3100/setup.c | 2 +-
.../toshiba_rbtx4927/toshiba_rbtx4927_setup.c | 2 +-
drivers/rtc/rtc-ds1742.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/mips/jmr3927/rbhma3100/setup.c b/arch/mips/jmr3927/rbhma3100/setup.c
index fde56e8..ffae163 100644
--- a/arch/mips/jmr3927/rbhma3100/setup.c
+++ b/arch/mips/jmr3927/rbhma3100/setup.c
@@ -427,7 +427,7 @@ static int __init jmr3927_rtc_init(void)
.flags = IORESOURCE_MEM,
};
struct platform_device *dev;
- dev = platform_device_register_simple("ds1742", -1, &res, 1);
+ dev = platform_device_register_simple("rtc-ds1742", -1, &res, 1);
return IS_ERR(dev) ? PTR_ERR(dev) : 0;
}
device_initcall(jmr3927_rtc_init);
diff --git a/arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_setup.c b/arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_setup.c
index 3e84237..91bd3d1 100644
--- a/arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_setup.c
+++ b/arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_setup.c
@@ -969,7 +969,7 @@ static int __init toshiba_rbtx4927_rtc_init(void)
.flags = IORESOURCE_MEM,
};
struct platform_device *dev =
- platform_device_register_simple("ds1742", -1, &res, 1);
+ platform_device_register_simple("rtc-ds1742", -1, &res, 1);
return IS_ERR(dev) ? PTR_ERR(dev) : 0;
}
device_initcall(toshiba_rbtx4927_rtc_init);
diff --git a/drivers/rtc/rtc-ds1742.c b/drivers/rtc/rtc-ds1742.c
index b2e5481..5562830 100644
--- a/drivers/rtc/rtc-ds1742.c
+++ b/drivers/rtc/rtc-ds1742.c
@@ -251,7 +251,7 @@ static struct platform_driver ds1742_rtc_driver = {
.probe = ds1742_rtc_probe,
.remove = __devexit_p(ds1742_rtc_remove),
.driv...

Previous thread: [PATCH] rtc: Make rtc-ds1553 driver hotplug-aware (take 3) by Atsushi Nemoto on Sunday, August 19, 2007 - 9:32 am. (1 message)

Next thread: sched.c: why -fno-omit-frame-pointer? by Adrian Bunk on Sunday, August 19, 2007 - 10:17 am. (4 messages)