diff options
| author | James Chapman <jchapman@katalix.com> | 2005-11-06 17:07:38 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-11-08 00:46:37 -0500 |
| commit | ef9627464490fe67235bbd5724d55345b92c0315 (patch) | |
| tree | 62ddcf3b6eaac8c723a09ab174c4afe330c135a3 | |
| parent | a852daa00ad91350fe603da47becaf3d5af4f2bd (diff) | |
[PATCH] i2c: ds1337 BCD conversion fix
Fix BCD value errors when month=9, moving the increment inside the
BIN2BCD macro.
Fix similar code for the weekday value, just for consistency.
This bug was reported by Michael Burian <dynmail1@gassner-waagen.at>.
Signed-off-by: James Chapman <jchapman@katalix.com>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
| -rw-r--r-- | drivers/i2c/chips/ds1337.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/i2c/chips/ds1337.c b/drivers/i2c/chips/ds1337.c index 01b037007410..02682fb794c8 100644 --- a/drivers/i2c/chips/ds1337.c +++ b/drivers/i2c/chips/ds1337.c | |||
| @@ -164,9 +164,9 @@ static int ds1337_set_datetime(struct i2c_client *client, struct rtc_time *dt) | |||
| 164 | buf[1] = BIN2BCD(dt->tm_sec); | 164 | buf[1] = BIN2BCD(dt->tm_sec); |
| 165 | buf[2] = BIN2BCD(dt->tm_min); | 165 | buf[2] = BIN2BCD(dt->tm_min); |
| 166 | buf[3] = BIN2BCD(dt->tm_hour); | 166 | buf[3] = BIN2BCD(dt->tm_hour); |
| 167 | buf[4] = BIN2BCD(dt->tm_wday) + 1; | 167 | buf[4] = BIN2BCD(dt->tm_wday + 1); |
| 168 | buf[5] = BIN2BCD(dt->tm_mday); | 168 | buf[5] = BIN2BCD(dt->tm_mday); |
| 169 | buf[6] = BIN2BCD(dt->tm_mon) + 1; | 169 | buf[6] = BIN2BCD(dt->tm_mon + 1); |
| 170 | val = dt->tm_year; | 170 | val = dt->tm_year; |
| 171 | if (val >= 100) { | 171 | if (val >= 100) { |
| 172 | val -= 100; | 172 | val -= 100; |
