diff options
author | Nils Wallménius <nils@rockbox.org> | 2009-09-26 14:58:32 +0000 |
---|---|---|
committer | Nils Wallménius <nils@rockbox.org> | 2009-09-26 14:58:32 +0000 |
commit | c8b87d76eb506d374edd2631d4c29e4300be84c4 (patch) | |
tree | 5d380f1f32f317afc579798c5fc4d988e9c48122 /firmware/include | |
parent | 66d5bd7cf8c10971578c643c16f72b51df4a1ddf (diff) |
FS#10569 RTC driver cleanup
Change the RTC drivers so that the rtc_(read|write)_datetime functions now deal directly with the tm struct instead of passing a string of bcd digits to/from (set|get)_time .
This simplifies drivers for rtc's that do not use a bcd representation internally and cleans up some target specific code and #ifdefs in generic code. Implement simple stubs for the sim to avoid #ifdefing for that too.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22839 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/include')
-rw-r--r-- | firmware/include/timefuncs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/include/timefuncs.h b/firmware/include/timefuncs.h index ab566d9e5f..f51fa996cc 100644 --- a/firmware/include/timefuncs.h +++ b/firmware/include/timefuncs.h @@ -35,3 +35,4 @@ time_t mktime(struct tm *t); #endif #endif /* _TIMEFUNCS_H_ */ + |