diff options
| author | Dave Chapman <dave@dchapman.com> | 2005-12-04 15:23:47 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2005-12-04 15:23:47 +0000 |
| commit | 8c800cf59af23eaa22b97e89556640f63998b9bd (patch) | |
| tree | 96115da5d0597b7625c637158364866d365258e1 /firmware/export/rtc.h | |
| parent | 0ea71be34895a225e137af20faea2adc9f113853 (diff) | |
| download | rockbox-8c800cf59af23eaa22b97e89556640f63998b9bd.zip rockbox-8c800cf59af23eaa22b97e89556640f63998b9bd.tar.gz rockbox-8c800cf59af23eaa22b97e89556640f63998b9bd.tar.bz2 rockbox-8c800cf59af23eaa22b97e89556640f63998b9bd.tar.xz | |
Replace references to HAVE_RTC with CONFIG_RTC and remove the HAVE_RTC defines from config-*.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8147 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/rtc.h')
| -rw-r--r-- | firmware/export/rtc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/rtc.h b/firmware/export/rtc.h index fd793bc..88413c7 100644 --- a/firmware/export/rtc.h +++ b/firmware/export/rtc.h @@ -21,7 +21,7 @@ #include <stdbool.h> -#ifdef HAVE_RTC +#ifdef CONFIG_RTC void rtc_init(void); int rtc_read(unsigned char address); int rtc_read_multiple(unsigned char address, unsigned char *buf, int numbytes); @@ -35,6 +35,6 @@ bool rtc_check_alarm_started(bool release_alarm); bool rtc_check_alarm_flag(void); #endif /* HAVE_ALARM_MOD */ -#endif /* HAVE_RTC */ +#endif /* CONFIG_RTC */ #endif |