diff options
| author | Rob Purchase <shotofadds@rockbox.org> | 2008-03-05 00:21:56 +0000 |
|---|---|---|
| committer | Rob Purchase <shotofadds@rockbox.org> | 2008-03-05 00:21:56 +0000 |
| commit | 562b9de7cbf3affed3979a8884c31b716734b03c (patch) | |
| tree | 283d01b5a54e285ea1f0df49c1f13066bdfd8ac5 /bootloader | |
| parent | 6ef63a53737ba772ea4ffddcb16d6a3979644f79 (diff) | |
| download | rockbox-562b9de7cbf3affed3979a8884c31b716734b03c.zip rockbox-562b9de7cbf3affed3979a8884c31b716734b03c.tar.gz rockbox-562b9de7cbf3affed3979a8884c31b716734b03c.tar.bz2 rockbox-562b9de7cbf3affed3979a8884c31b716734b03c.tar.xz | |
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.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/bootloader/telechips.c b/bootloader/telechips.c index e1b80f9..dcb0c48 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) |