summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd-scroll.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2023-05-17 11:50:38 -0400
committerSolomon Peachy <pizza@shaftnet.org>2023-05-17 11:55:58 -0400
commit72c0e49b41b0da4a43a4852771eed3767fc675ad (patch)
treee46a9c1ad6af1c93276b6225f68a958ad1bd9533 /firmware/drivers/lcd-scroll.c
parent9134c688d923bc776c939db5c6824e0871b71991 (diff)
downloadrockbox-72c0e49b41b0da4a43a4852771eed3767fc675ad.tar.gz
rockbox-72c0e49b41b0da4a43a4852771eed3767fc675ad.zip
scroll: Fix red from previous commit.
Targets with remote LCDs need to have the lcd scroll driver instantiated, even in the bootloader. This is because lcd_remote_scroll_stop() is called, in addition to lcd_scroll_stop(). This could probably be excised. Change-Id: I475269f9361eb469c62ad0f74abc1eb3baa4c134
Diffstat (limited to 'firmware/drivers/lcd-scroll.c')
-rw-r--r--firmware/drivers/lcd-scroll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/lcd-scroll.c b/firmware/drivers/lcd-scroll.c
index dfdf78ecda..cd8fc4587e 100644
--- a/firmware/drivers/lcd-scroll.c
+++ b/firmware/drivers/lcd-scroll.c
@@ -180,7 +180,7 @@ bool LCDFN(scroll_now)(struct scrollinfo *s)
180 return ended; 180 return ended;
181} 181}
182 182
183#if !defined(BOOTLOADER) || defined(HAVE_REMOTE_LCD) 183#if !defined(BOOTLOADER)
184static void LCDFN(scroll_worker)(void) 184static void LCDFN(scroll_worker)(void)
185{ 185{
186 int index; 186 int index;