aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc
diff options
context:
space:
mode:
authorkogiidena <kogiidena@eggplant.ddo.jp>2007-05-11 01:22:54 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-05-11 11:29:35 -0400
commit9a3f1d53dbf112d2387f8b80682afc1084f9dfc3 (patch)
tree1304b92c3ada981b7f832a18f919270c246cb7a7 /drivers/rtc
parent3e88c553db938ad016026375f0545304b9030b42 (diff)
rtc-rs5c313.c: error and warning are fixed
Correct a compile error and warning. Signed-off-by: kogiidena <kogiidena@eggplant.ddo.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')
-rw-r--r--drivers/rtc/Kconfig2
-rw-r--r--drivers/rtc/rtc-rs5c313.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/rtc/Kconfig b/drivers/rtc/Kconfig
index 1759baad439c..ad445d5e58c7 100644
--- a/drivers/rtc/Kconfig
+++ b/drivers/rtc/Kconfig
@@ -397,7 +397,7 @@ config RTC_DRV_BFIN
397 397
398config RTC_DRV_RS5C313 398config RTC_DRV_RS5C313
399 tristate "Ricoh RS5C313" 399 tristate "Ricoh RS5C313"
400 depends on RTC_CLASS && BROKEN 400 depends on RTC_CLASS && SH_LANDISK
401 help 401 help
402 If you say yes here you get support for the Ricoh RS5C313 RTC chips. 402 If you say yes here you get support for the Ricoh RS5C313 RTC chips.
403 403
diff --git a/drivers/rtc/rtc-rs5c313.c b/drivers/rtc/rtc-rs5c313.c
index 9d6de371495b..79ee371dd75b 100644
--- a/drivers/rtc/rtc-rs5c313.c
+++ b/drivers/rtc/rtc-rs5c313.c
@@ -126,7 +126,7 @@ static void rs5c313_write_data(unsigned char data)
126static unsigned char rs5c313_read_data(void) 126static unsigned char rs5c313_read_data(void)
127{ 127{
128 int i; 128 int i;
129 unsigned char data; 129 unsigned char data = 0;
130 130
131 for (i = 0; i < 8; i++) { 131 for (i = 0; i < 8; i++) {
132 ndelay(700); 132 ndelay(700);
@@ -194,7 +194,7 @@ static void rs5c313_write_reg(unsigned char addr, unsigned char data)
194 return; 194 return;
195} 195}
196 196
197static inline unsigned char rs5c313_read_cntreg(unsigned char addr) 197static inline unsigned char rs5c313_read_cntreg(void)
198{ 198{
199 return rs5c313_read_reg(RS5C313_ADDR_CNTREG); 199 return rs5c313_read_reg(RS5C313_ADDR_CNTREG);
200} 200}
@@ -356,7 +356,7 @@ static int rs5c313_rtc_probe(struct platform_device *pdev)
356 356
357 platform_set_drvdata(pdev, rtc); 357 platform_set_drvdata(pdev, rtc);
358 358
359 return err; 359 return 0;
360} 360}
361 361
362static int __devexit rs5c313_rtc_remove(struct platform_device *pdev) 362static int __devexit rs5c313_rtc_remove(struct platform_device *pdev)