summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-08-06 08:12:29 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-08-06 08:12:29 +0000
commita25d7ce1263b94c2f897032c74ffc0ae1ab8e5f9 (patch)
tree3ed60bea5d581ddc722aaed26d9e4af3f07b605e /firmware/drivers
parent047174872ad61562fb3a9dea8e14aafc024aaf8b (diff)
downloadrockbox-a25d7ce1263b94c2f897032c74ffc0ae1ab8e5f9.tar.gz
rockbox-a25d7ce1263b94c2f897032c74ffc0ae1ab8e5f9.zip
Added rtc_init()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1540 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/rtc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/drivers/rtc.h b/firmware/drivers/rtc.h
index 00b4db5596..695683ea87 100644
--- a/firmware/drivers/rtc.h
+++ b/firmware/drivers/rtc.h
@@ -20,6 +20,7 @@
20#define _RTC_H_ 20#define _RTC_H_
21 21
22#ifdef HAVE_RTC 22#ifdef HAVE_RTC
23void rtc_init(void);
23int rtc_read(unsigned char address); 24int rtc_read(unsigned char address);
24int rtc_write(unsigned char address, unsigned char value); 25int rtc_write(unsigned char address, unsigned char value);
25#endif 26#endif