diff options
| author | Robert Kukla <roolku@rockbox.org> | 2007-03-03 00:11:20 +0000 |
|---|---|---|
| committer | Robert Kukla <roolku@rockbox.org> | 2007-03-03 00:11:20 +0000 |
| commit | ae08eeb4ffeadb7b89f913180bdac099fc5c5071 (patch) | |
| tree | f17480217ca239b14a6b4ec97d7cb45bf8840cc6 /apps/misc.c | |
| parent | 909b9462da8387e1c8379a52058c61bf18e222e5 (diff) | |
| download | rockbox-ae08eeb4ffeadb7b89f913180bdac099fc5c5071.zip rockbox-ae08eeb4ffeadb7b89f913180bdac099fc5c5071.tar.gz rockbox-ae08eeb4ffeadb7b89f913180bdac099fc5c5071.tar.bz2 rockbox-ae08eeb4ffeadb7b89f913180bdac099fc5c5071.tar.xz | |
remove runtime detection of h1x0 series RTC MOD, but leave driver code
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12554 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/misc.c')
| -rw-r--r-- | apps/misc.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/misc.c b/apps/misc.c index 339bc1d..22f6fb5 100644 --- a/apps/misc.c +++ b/apps/misc.c @@ -60,7 +60,6 @@ #include "gui/gwps-common.h" #include "misc.h" -#include "rtc.h" /* Format a large-range value for output, using the appropriate unit so that * the displayed value is in the range 1 <= display < 1000 (1024 for "binary" @@ -415,12 +414,6 @@ void screen_dump(void) #endif #ifdef CONFIG_RTC -#if CONFIG_RTC == RTC_DS1339_DS3231 - if(!rtc_detected) - create_numbered_filename(filename, "", "dump_", ".bmp", 4 - IF_CNFN_NUM_(, NULL)); - else -#endif create_datetime_filename(filename, "", "dump ", ".bmp", false); #else create_numbered_filename(filename, "", "dump_", ".bmp", 4 |