forked from len0rd/rockbox
Allow to select the core for running the user timer on portalplayer targets. * Incompatible plugin API change -> sorted API.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16965 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3183b9e534
commit
ac9b92716a
11 changed files with 36 additions and 22 deletions
|
|
@ -289,7 +289,8 @@ static void backlight_dim(int value)
|
|||
if (bl_timer_active)
|
||||
return ;
|
||||
|
||||
if (timer_register(0, backlight_release_timer, 2, 0, backlight_isr))
|
||||
if (timer_register(0, backlight_release_timer, 2, 0, backlight_isr
|
||||
IF_COP(, CPU)))
|
||||
{
|
||||
#ifdef _BACKLIGHT_FADE_BOOST
|
||||
/* Prevent cpu frequency changes while dimming. */
|
||||
|
|
@ -813,7 +814,7 @@ void remote_backlight_on(void) {}
|
|||
void remote_backlight_off(void) {}
|
||||
void remote_backlight_set_timeout(int value) {(void)value;}
|
||||
|
||||
bool is_remote_backlight_on(bool ignore_always_off)
|
||||
bool is_remote_backlight_on(bool ignore_always_off)
|
||||
{
|
||||
(void)ignore_always_off;
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue