diff options
author | Marcin Bukat <marcin.bukat@gmail.com> | 2015-01-09 00:22:40 +0100 |
---|---|---|
committer | Gerrit Rockbox <gerrit@rockbox.org> | 2015-01-12 11:09:27 +0100 |
commit | 89ba7e818c0d96b779b02bc7b31c0c6a19294a46 (patch) | |
tree | 19f7326e1f27f4bd403c4437572b579add5b61bb /bootloader/iriver_h1x0.c | |
parent | 2a3e1628a50b9de7c1462ee95eb79937795f5409 (diff) |
Get rid of stupid _backlight_* function names
_remote_backlight_* and _buttonlight_* are cleaned as well
Change-Id: I73653752831bbe170c26ba95d3bc04c2e3a5cf30
Diffstat (limited to 'bootloader/iriver_h1x0.c')
-rw-r--r-- | bootloader/iriver_h1x0.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bootloader/iriver_h1x0.c b/bootloader/iriver_h1x0.c index 742d0dd254..8fd95d048c 100644 --- a/bootloader/iriver_h1x0.c +++ b/bootloader/iriver_h1x0.c @@ -158,9 +158,9 @@ void shutdown(void) sleep(HZ*2); /* Backlight OFF */ - _backlight_off(); + backlight_hw_off(); #ifdef HAVE_REMOTE_LCD - _remote_backlight_off(); + remote_backlight_hw_off(); #endif __reset_cookie(); @@ -418,12 +418,12 @@ void main(void) __uda1380_reset_hi(); /* Start with the main backlight OFF. */ - _backlight_init(); - _backlight_off(); + backlight_hw_init(); + backlight_hw_off(); /* Remote backlight ON */ #ifdef HAVE_REMOTE_LCD - _remote_backlight_on(); + remote_backlight_hw_on(); #endif system_init(); @@ -576,7 +576,7 @@ void main(void) sleep(HZ); /* Backlight OFF */ - _backlight_off(); + backlight_hw_off(); } cpu_idle_mode(false); |