rtc: rv3029: Clean up error handling in rv3029_eeprom_write()
authorDan Carpenter <[email protected]>
Wed, 20 Sep 2017 21:45:30 +0000 (00:45 +0300)
committerAlexandre Belloni <[email protected]>
Thu, 12 Oct 2017 14:24:19 +0000 (16:24 +0200)
commit97f5b0379c382d9c2b944baa02852338dee7d8aa
tree7991417d68ff4ca36d85f7be0f119098e237e8c8
parent695e38d8818dd858d7516c77bab96be266f56694
rtc: rv3029: Clean up error handling in rv3029_eeprom_write()

We don't need both "ret" and "err" when they do the same thing.  All the
functions called here return zero on success or negative error codes.
It's more clear to return a literal zero at the end instead of
"return ret;"

Signed-off-by: Dan Carpenter <[email protected]>
Signed-off-by: Alexandre Belloni <[email protected]>
drivers/rtc/rtc-rv3029c2.c