summaryrefslogtreecommitdiff
path: root/firmware/target/arm/ipod/video
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-10-20 21:54:59 +0000
committerThomas Martitz <kugel@rockbox.org>2009-10-20 21:54:59 +0000
commitd85c3ec41020a6c56b0d5d95a9ed790f57d73c6e (patch)
tree2f51ed47fee689024ed8c145634044362c8ed7d5 /firmware/target/arm/ipod/video
parent774bacc692b4d5c7b769bb88d24e182db9e4656f (diff)
downloadrockbox-d85c3ec41020a6c56b0d5d95a9ed790f57d73c6e.tar.gz
rockbox-d85c3ec41020a6c56b0d5d95a9ed790f57d73c6e.zip
Convert lcd_activation callbacks to use the event system to allow for multiple parallel callbacks (for custom statusbar).
Increase maximum event count as we need more (I actually had a report about it during custom statusbar testing). Removed corresponding functions from the core and plugin api. Bump min version and sort. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23302 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/ipod/video')
-rw-r--r--firmware/target/arm/ipod/video/lcd-video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/ipod/video/lcd-video.c b/firmware/target/arm/ipod/video/lcd-video.c
index ecd28bb7c3..ea9738b3a4 100644
--- a/firmware/target/arm/ipod/video/lcd-video.c
+++ b/firmware/target/arm/ipod/video/lcd-video.c
@@ -618,7 +618,7 @@ void lcd_awake(void)
618 tick_add_task(&lcd_tick); 618 tick_add_task(&lcd_tick);
619 wakeup_wait(&(lcd_state.initwakeup), TIMEOUT_BLOCK); 619 wakeup_wait(&(lcd_state.initwakeup), TIMEOUT_BLOCK);
620 620
621 lcd_activation_call_hook(); 621 send_event(LCD_EVENT_ACTIVATION, NULL);
622 } 622 }
623} 623}
624 624