summaryrefslogtreecommitdiff
path: root/bootloader/sansaview.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/sansaview.c')
-rw-r--r--bootloader/sansaview.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bootloader/sansaview.c b/bootloader/sansaview.c
index 03e24b8c8e..7ea4b59250 100644
--- a/bootloader/sansaview.c
+++ b/bootloader/sansaview.c
@@ -54,11 +54,11 @@ void main(void)
54 54
55 while(1) 55 while(1)
56 { 56 {
57 _backlight_on(); 57 backlight_hw_on();
58 _buttonlight_off(); 58 buttonlight_hw_off();
59 sleep(HZ/4); 59 sleep(HZ/4);
60 _backlight_off(); 60 backlight_hw_off();
61 _buttonlight_on(); 61 buttonlight_hw_on();
62 sleep(HZ/4); 62 sleep(HZ/4);
63 } 63 }
64} 64}