summaryrefslogtreecommitdiff
path: root/bootloader/creativezvm.c
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2020-11-13 12:41:13 -0500
committerWilliam Wilgus <me.theuser@yahoo.com>2020-11-13 18:08:01 +0000
commitf65fb2a64abaf66b4d695be7fb3e114febea6bd1 (patch)
tree44fb913004ef2c82f5d56a7a6acc4ec4af319a79 /bootloader/creativezvm.c
parent8ac46f844f437a31f72d73a41a6d3852d8b96143 (diff)
downloadrockbox-f65fb2a64abaf66b4d695be7fb3e114febea6bd1.tar.gz
rockbox-f65fb2a64abaf66b4d695be7fb3e114febea6bd1.zip
h300, Others Bugfix Bootloader backlight_init()
backlight_init needs to be called after lcd_init when using lcd_enable() Change-Id: Id034835c903801fea49e2b972c110c1ec5106976
Diffstat (limited to 'bootloader/creativezvm.c')
-rw-r--r--bootloader/creativezvm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootloader/creativezvm.c b/bootloader/creativezvm.c
index 6597448193..415cab1ea3 100644
--- a/bootloader/creativezvm.c
+++ b/bootloader/creativezvm.c
@@ -57,8 +57,8 @@ void main(void)
57 /* Now enable interrupts */ 57 /* Now enable interrupts */
58 set_irq_level(IRQ_ENABLED); 58 set_irq_level(IRQ_ENABLED);
59 set_fiq_status(FIQ_ENABLED); 59 set_fiq_status(FIQ_ENABLED);
60 backlight_init();
61 lcd_init(); 60 lcd_init();
61 backlight_init(); /* BUGFIX backlight_init MUST BE AFTER lcd_init */
62 font_init(); 62 font_init();
63 button_init(); 63 button_init();
64 usb_init(); 64 usb_init();