summaryrefslogtreecommitdiff
path: root/bootloader/telechips.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/telechips.c')
-rw-r--r--bootloader/telechips.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/bootloader/telechips.c b/bootloader/telechips.c
index 4d64532449..f5abb8c919 100644
--- a/bootloader/telechips.c
+++ b/bootloader/telechips.c
@@ -44,9 +44,8 @@
44#include "file.h" 44#include "file.h"
45#include "common.h" 45#include "common.h"
46 46
47#if defined(COWON_D2) || defined(IAUDIO_7) 47/* Show the Rockbox logo - in show_logo.c */
48#include "pcf50606.h" 48extern int show_logo(void);
49#endif
50 49
51/* Address to load main Rockbox image to */ 50/* Address to load main Rockbox image to */
52#define LOAD_ADDRESS 0x20000000 /* DRAM_START */ 51#define LOAD_ADDRESS 0x20000000 /* DRAM_START */
@@ -196,6 +195,8 @@ void* main(void)
196 195
197 font_init(); 196 font_init();
198 lcd_setfont(FONT_SYSFIXED); 197 lcd_setfont(FONT_SYSFIXED);
198
199 show_logo();
199 200
200 _backlight_on(); 201 _backlight_on();
201 202