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/scrobbler.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/scrobbler.c')
| -rw-r--r-- | apps/scrobbler.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/scrobbler.c b/apps/scrobbler.c index 1c0d98c..a339429 100644 --- a/apps/scrobbler.c +++ b/apps/scrobbler.c @@ -35,7 +35,6 @@ http://www.audioscrobbler.net/wiki/Portable_Player_Logging #ifdef CONFIG_RTC #include "time.h" #include "timefuncs.h" -#include "rtc.h" #endif #include "scrobbler.h" @@ -209,11 +208,6 @@ void scrobbler_change_event(struct mp3entry *id) logf("SCROBBLER: add pending"); copy_mp3entry(&scrobbler_entry, id); #ifdef CONFIG_RTC -#if CONFIG_RTC == RTC_DS1339_DS3231 - if(!rtc_detected) - timestamp = 0; - else -#endif timestamp = mktime(get_time()); #else timestamp = 0; |