summaryrefslogtreecommitdiff
path: root/firmware/common/timefuncs.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/common/timefuncs.c')
-rw-r--r--firmware/common/timefuncs.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/firmware/common/timefuncs.c b/firmware/common/timefuncs.c
index cffdb3951a..af4b596dd0 100644
--- a/firmware/common/timefuncs.c
+++ b/firmware/common/timefuncs.c
@@ -105,7 +105,6 @@ int set_time(const struct tm *tm)
105#endif /* RTC */ 105#endif /* RTC */
106} 106}
107 107
108#if CONFIG_RTC
109void set_day_of_week(struct tm *tm) 108void set_day_of_week(struct tm *tm)
110{ 109{
111 int y=tm->tm_year+1900; 110 int y=tm->tm_year+1900;
@@ -116,5 +115,4 @@ void set_day_of_week(struct tm *tm)
116 if(m == 0 || m == 1) y--; 115 if(m == 0 || m == 1) y--;
117 tm->tm_wday = (d + mo[m] + y + y/4 - y/100 + y/400) % 7; 116 tm->tm_wday = (d + mo[m] + y + y/4 - y/100 + y/400) % 7;
118} 117}
119#endif /* CONFIG_RTC */
120 118