summaryrefslogtreecommitdiff
path: root/bootloader
diff options
context:
space:
mode:
authorRob Purchase <shotofadds@rockbox.org>2008-03-05 00:21:56 +0000
committerRob Purchase <shotofadds@rockbox.org>2008-03-05 00:21:56 +0000
commit562b9de7cbf3affed3979a8884c31b716734b03c (patch)
tree283d01b5a54e285ea1f0df49c1f13066bdfd8ac5 /bootloader
parent6ef63a53737ba772ea4ffddcb16d6a3979644f79 (diff)
D2: Make lcd_init_device() actually turn on the LCD, in preparation for booting the main image. Previously this required an explicit lcd_enable(true).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16523 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'bootloader')
-rw-r--r--bootloader/telechips.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/bootloader/telechips.c b/bootloader/telechips.c
index e1b80f9be6..dcb0c48d6c 100644
--- a/bootloader/telechips.c
+++ b/bootloader/telechips.c
@@ -62,8 +62,8 @@ void* main(void)
#endif
power_init();
- lcd_init();
system_init();
+ lcd_init();
#if defined(COWON_D2)
kernel_init();
@@ -74,13 +74,8 @@ void* main(void)
backlight_init();
font_init();
-
lcd_setfont(FONT_SYSFIXED);
-#if defined(COWON_D2)
- lcd_enable(true);
-#endif
-
_backlight_on();
#if defined(COWON_D2)