diff options
author | Peter Senna Tschudin <peter.senna@gmail.com> | 2013-02-22 01:44:30 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-22 02:22:27 +0100 |
commit | 0b7e039243425b07a952b81ea5b4d86f46d9cf25 (patch) | |
tree | 43b585a2fd0839ca88ba2fdf699139025323fb4a /drivers/rtc/rtc-pcf8563.c | |
parent | drivers/rtc/rtc-pxa.c: avoid cpuid checking (diff) | |
download | linux-0b7e039243425b07a952b81ea5b4d86f46d9cf25.tar.xz linux-0b7e039243425b07a952b81ea5b4d86f46d9cf25.zip |
drivers/rtc: remove unnecessary semicolons
Found by Coccinelle: http://coccinelle.lip6.fr/
Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/rtc-pcf8563.c')
-rw-r--r-- | drivers/rtc/rtc-pcf8563.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-pcf8563.c b/drivers/rtc/rtc-pcf8563.c index 7098ee89bd29..f7daf18a112e 100644 --- a/drivers/rtc/rtc-pcf8563.c +++ b/drivers/rtc/rtc-pcf8563.c @@ -181,7 +181,7 @@ static int pcf8563_set_datetime(struct i2c_client *client, struct rtc_time *tm) __func__, err, data[0], data[1]); return -EIO; } - }; + } return 0; } |