Commit 0b7e039243425b07a952b81ea5b4d86f46d9cf25

Authored by Peter Senna Tschudin
Committed by Linus Torvalds
1 parent 95fe8347b6

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>

Showing 2 changed files with 2 additions and 2 deletions Side-by-side Diff

drivers/rtc/rtc-isl12022.c
... ... @@ -227,7 +227,7 @@
227 227 buf[ISL12022_REG_SC + i]);
228 228 if (ret)
229 229 return -EIO;
230   - };
  230 + }
231 231  
232 232 return 0;
233 233 }
drivers/rtc/rtc-pcf8563.c
... ... @@ -181,7 +181,7 @@
181 181 __func__, err, data[0], data[1]);
182 182 return -EIO;
183 183 }
184   - };
  184 + }
185 185  
186 186 return 0;
187 187 }