From 58b849c451ac1281c14bfc535ab7f411a0b736e0 Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Wed, 25 Jan 2017 19:32:15 -0500 Subject: Move intrinsic RTC implmentation differences to driver files Some drivers set tm_wday just fine and do not need it coerced to be correct. Others set tm_yday, so don't overwrite what the driver sets; just zero it inside if it can't fill the field. Move calls to set_day_of_week() to the sorts of drivers that presumably required the hammer (FS#11814) in get_time() where the weekday isn't locked to the date. Change-Id: Idd0ded6bfc9d9f48fcc1a6074068164c42fcf24a --- firmware/drivers/rtc/rtc_s3c2440.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'firmware/drivers/rtc/rtc_s3c2440.c') diff --git a/firmware/drivers/rtc/rtc_s3c2440.c b/firmware/drivers/rtc/rtc_s3c2440.c index a8787e3f8f..6cd34f0e23 100644 --- a/firmware/drivers/rtc/rtc_s3c2440.c +++ b/firmware/drivers/rtc/rtc_s3c2440.c @@ -23,6 +23,7 @@ #include "rtc.h" #include "kernel.h" #include "system.h" +#include "timefuncs.h" void rtc_init(void) { @@ -35,10 +36,12 @@ int rtc_read_datetime(struct tm *tm) tm->tm_sec = BCD2DEC(BCDSEC); tm->tm_min = BCD2DEC(BCDMIN); tm->tm_hour = BCD2DEC(BCDHOUR); - tm->tm_wday = BCD2DEC(BCDDAY) - 1; /* timefuncs wants 0..6 for wday */ tm->tm_mday = BCD2DEC(BCDDATE); tm->tm_mon = BCD2DEC(BCDMON) - 1; tm->tm_year = BCD2DEC(BCDYEAR) + 100; + tm->tm_yday = 0; /* Not implemented for now */ + + set_day_of_week(tm); return 1; } -- cgit v1.2.3