diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-11-17 12:45:07 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-11-17 12:45:07 +0000 |
| commit | 335190567c5990aa984f965cc09ccebb6941931e (patch) | |
| tree | b293883247f7f3954501dae97d1668c2adc06773 | |
| parent | 34145af486b399494ddc27c612ab5643356ff568 (diff) | |
| download | rockbox-335190567c5990aa984f965cc09ccebb6941931e.zip rockbox-335190567c5990aa984f965cc09ccebb6941931e.tar.gz rockbox-335190567c5990aa984f965cc09ccebb6941931e.tar.bz2 rockbox-335190567c5990aa984f965cc09ccebb6941931e.tar.xz | |
Removed annoying debug output
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5417 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/settings.c | 4 | ||||
| -rw-r--r-- | uisimulator/common/stubs.c | 5 |
2 files changed, 3 insertions, 6 deletions
diff --git a/apps/settings.c b/apps/settings.c index 2ee4126..7ca3820 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -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; diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c index e5e8df9..67315de 100644 --- a/uisimulator/common/stubs.c +++ b/uisimulator/common/stubs.c @@ -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) |