]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
rtc: ds1302: fix write value for day of week register
authorAkinobu Mita <akinobu.mita@gmail.com>
Sun, 10 Apr 2016 14:59:24 +0000 (23:59 +0900)
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>
Fri, 20 May 2016 10:33:51 +0000 (12:33 +0200)
commitef50f86e15f2516658f0badd7890292d7a685106
tree628d83f54ff9d7e178cfbc5aedbbcd954ad57e00
parentbc83a141b8351f6d4458dd13eca5a66f2c0f3323
rtc: ds1302: fix write value for day of week register

The valid range of day of week register for DS1302 is 1 to 7.  But the
set_time callback for rtc-ds1302 attempts to write the value of
tm->tm_wday which is in the range 0 to 6.  While the get_time callback
correctly decodes the register.

Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Cc: Sergey Yanovich <ynvich@gmail.com>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Cc: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
drivers/rtc/rtc-ds1302.c