summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2006-01-09 13:22:00 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2006-01-09 13:22:00 +0000
commit1917cd5f12e716e1bc7c208be923203f65a1c719 (patch)
tree27e58f9c49ccf000780ba8854b8b8c527eb4ccd6
parenta5750f85f37e4b637009e804de88326ad2fe854d (diff)
H300: bootloader must call lcd_enable() since the backlight thread isn't running
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8316 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--bootloader/main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/bootloader/main.c b/bootloader/main.c
index 31324b50fe..482abddc8a 100644
--- a/bootloader/main.c
+++ b/bootloader/main.c
@@ -217,6 +217,9 @@ void main(void)
backlight_init();
set_irq_level(0);
lcd_init();
+#ifdef IRIVER_H300_SERIES
+ lcd_enable(true);
+#endif
font_init();
adc_init();
button_init();