summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/settings.c4
-rw-r--r--uisimulator/common/stubs.c5
2 files changed, 3 insertions, 6 deletions
diff --git a/apps/settings.c b/apps/settings.c
index 2ee4126adb..7ca3820016 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -469,8 +469,6 @@ static int save_config_buffer( void )
469 unsigned int i; 469 unsigned int i;
470#endif 470#endif
471 471
472 DEBUGF( "save_config_buffer()\n" );
473
474 /* update the checksum in the end of the block before saving */ 472 /* update the checksum in the end of the block before saving */
475 chksum = calculate_config_checksum(config_block); 473 chksum = calculate_config_checksum(config_block);
476 config_block[ RTC_BLOCK_SIZE - 2 ] = chksum >> 8; 474 config_block[ RTC_BLOCK_SIZE - 2 ] = chksum >> 8;
@@ -645,8 +643,6 @@ void settings_calc_config_sector(void)
645 */ 643 */
646int settings_save( void ) 644int settings_save( void )
647{ 645{
648 DEBUGF( "settings_save()\n" );
649
650 { 646 {
651 int elapsed_secs; 647 int elapsed_secs;
652 648
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c
index e5e8df9312..67315de08e 100644
--- a/uisimulator/common/stubs.c
+++ b/uisimulator/common/stubs.c
@@ -160,8 +160,9 @@ int rtc_read(int address)
160 160
161int rtc_write(int address, int value) 161int rtc_write(int address, int value)
162{ 162{
163 DEBUGF("write %02x to address %02x\n", value, address); 163 (void)address;
164 return 0; 164 (void)value;
165 return 0;
165} 166}
166 167
167bool has_new_lcd(void) 168bool has_new_lcd(void)