diff options
Diffstat (limited to 'bootloader')
| -rw-r--r-- | bootloader/ipod.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bootloader/ipod.c b/bootloader/ipod.c index 816f13a..b3ff7bc 100644 --- a/bootloader/ipod.c +++ b/bootloader/ipod.c @@ -35,7 +35,7 @@ #include "disk.h" #include "font.h" #include "adc.h" -#include "backlight-target.h" +#include "backlight.h" #include "panic.h" #include "power.h" #include "file.h" @@ -237,13 +237,13 @@ void* main(void) reset the settings in rockbox. */ button_was_held = button_hold(); + system_init(); + kernel_init(); + #ifndef HAVE_BACKLIGHT_INVERSION - /* Turn on the backlight */ - _backlight_on(); + backlight_init(); /* Turns on the backlight */ #endif - system_init(); - kernel_init(); lcd_init(); font_init(); |