Remove some more simulator debugging output.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17019 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Steve Bavin 2008-04-07 17:19:53 +00:00
parent 977069a41d
commit 799e9489ca
5 changed files with 11 additions and 20 deletions

View file

@ -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;
}

View file

@ -584,6 +584,5 @@ int read_bmp_fd(int fd,
}
}
DEBUGF("totalsize: %d\n", totalsize);
return totalsize; /* return the used buffer size. */
}

View file

@ -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++)
{