Removed annoying debug output

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5417 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2004-11-17 12:45:07 +00:00
parent 34145af486
commit 335190567c
2 changed files with 3 additions and 6 deletions

View File

@ -469,8 +469,6 @@ static int save_config_buffer( void )
unsigned int i;
#endif
DEBUGF( "save_config_buffer()\n" );
/* update the checksum in the end of the block before saving */
chksum = calculate_config_checksum(config_block);
config_block[ RTC_BLOCK_SIZE - 2 ] = chksum >> 8;
@ -645,8 +643,6 @@ void settings_calc_config_sector(void)
*/
int settings_save( void )
{
DEBUGF( "settings_save()\n" );
{
int elapsed_secs;

View File

@ -160,8 +160,9 @@ int rtc_read(int address)
int rtc_write(int address, int value)
{
DEBUGF("write %02x to address %02x\n", value, address);
return 0;
(void)address;
(void)value;
return 0;
}
bool has_new_lcd(void)