1
0
Fork 0
forked from len0rd/rockbox

bootloader/common: disable unused broken code

Disable (probably old) broken code, this fixes bootloader builds
when ROCKBOX_HAS_LOGF is used.

Change-Id: Id0ed2c3368855e2d2d2dbfb18149b9ed81c10b95
This commit is contained in:
Cástor Muñoz 2016-05-02 01:17:05 +02:00
parent e62203aac1
commit c31fcddd98

View file

@ -154,6 +154,8 @@ int load_raw_firmware(unsigned char* buf, char* firmware, int buffer_size)
return len;
}
/* FIXME?: unused broken code */
#if 0
#ifdef ROCKBOX_HAS_LOGF /* Logf display helper for the bootloader */
#define LINES (LCD_HEIGHT/SYSFONT_HEIGHT)
@ -233,3 +235,4 @@ void display_logf(void) /* Doesn't return! */
}
}
#endif
#endif