diff options
| author | Steve Bavin <pondlife@pondlife.me> | 2008-04-07 17:19:53 +0000 |
|---|---|---|
| committer | Steve Bavin <pondlife@pondlife.me> | 2008-04-07 17:19:53 +0000 |
| commit | 799e9489caa41fde88f5ebabf174d4c8646deb1a (patch) | |
| tree | bed81db30255e5dbc3edaa7e8723ed7b52e68a34 /apps/settings.c | |
| parent | 977069a41de8650e9ee2716ff04db6b5365384c6 (diff) | |
| download | rockbox-799e9489caa41fde88f5ebabf174d4c8646deb1a.zip rockbox-799e9489caa41fde88f5ebabf174d4c8646deb1a.tar.gz rockbox-799e9489caa41fde88f5ebabf174d4c8646deb1a.tar.bz2 rockbox-799e9489caa41fde88f5ebabf174d4c8646deb1a.tar.xz | |
Remove some more simulator debugging output.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17019 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.c')
| -rw-r--r-- | apps/settings.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/apps/settings.c b/apps/settings.c index 895db69..3a9a806 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -205,11 +205,8 @@ static bool write_nvram_data(char* buf, int max_len) supports that, but this will have to do for now 8-) */ for (i=0; i < NVRAM_BLOCK_SIZE; i++ ) { int r = rtc_write(0x14+i, buf[i]); - if (r) { - DEBUGF( "save_config_buffer: rtc_write failed at addr 0x%02x: %d\n", - 14+i, r ); + if (r) return false; - } } #endif return true; @@ -221,7 +218,6 @@ static bool write_nvram_data(char* buf, int max_len) */ void settings_load(int which) { - DEBUGF( "reload_all_settings()\n" ); if (which&SETTINGS_RTC) read_nvram_data(nvram_buffer,NVRAM_BLOCK_SIZE); if (which&SETTINGS_HD) @@ -723,7 +719,6 @@ void settings_apply(bool read_disk) int i; #endif - DEBUGF( "settings_apply()\n" ); sound_settings_apply(); #ifndef HAVE_FLASH_STORAGE @@ -950,7 +945,6 @@ void settings_apply(bool read_disk) void settings_reset(void) { int i; - DEBUGF( "settings_reset()\n" ); for(i=0; i<nb_settings; i++) { |