diff options
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/filetree.c | 1 | ||||
| -rw-r--r-- | apps/recorder/bmp.c | 1 | ||||
| -rw-r--r-- | apps/settings.c | 8 |
3 files changed, 1 insertions, 9 deletions
diff --git a/apps/filetree.c b/apps/filetree.c index 97732cc..e8fb459 100644 --- a/apps/filetree.c +++ b/apps/filetree.c @@ -62,7 +62,6 @@ int ft_build_playlist(struct tree_context* c, int start_index) { if((dircache[i].attr & FILE_ATTR_MASK) == FILE_ATTR_AUDIO) { - DEBUGF("Adding %s\n", dircache[i].name); if (playlist_add(dircache[i].name) < 0) break; } diff --git a/apps/recorder/bmp.c b/apps/recorder/bmp.c index e2d5713..d977699 100644 --- a/apps/recorder/bmp.c +++ b/apps/recorder/bmp.c @@ -584,6 +584,5 @@ int read_bmp_fd(int fd, } } - DEBUGF("totalsize: %d\n", totalsize); return totalsize; /* return the used buffer size. */ } 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++) { |