diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2007-07-21 07:37:55 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-21 20:49:17 -0400 |
commit | ef154ec69c45aa052b1fa71ee5eeaca7e7f920a3 (patch) | |
tree | 609d42b7547307c04c988547dd6bdbb15808642c /drivers/rtc/rtc-ds1742.c | |
parent | 8214b0832cb3c0b74198e5b22c0e070aeaa3dd20 (diff) |
rtc: do not return void value
This patch fixes these sparse warnings:
drivers/rtc/rtc-ds1742.c:265:2: warning: returning void-valued expression
drivers/rtc/rtc-ds1553.c:409:2: warning: returning void-valued expression
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Cc: David Brownell <david-b@pacbell.net>
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-ds1742.c')
-rw-r--r-- | drivers/rtc/rtc-ds1742.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-ds1742.c b/drivers/rtc/rtc-ds1742.c index d1778ae8bca5..b2e5481ba3b6 100644 --- a/drivers/rtc/rtc-ds1742.c +++ b/drivers/rtc/rtc-ds1742.c | |||
@@ -263,7 +263,7 @@ static __init int ds1742_init(void) | |||
263 | 263 | ||
264 | static __exit void ds1742_exit(void) | 264 | static __exit void ds1742_exit(void) |
265 | { | 265 | { |
266 | return platform_driver_unregister(&ds1742_rtc_driver); | 266 | platform_driver_unregister(&ds1742_rtc_driver); |
267 | } | 267 | } |
268 | 268 | ||
269 | module_init(ds1742_init); | 269 | module_init(ds1742_init); |