summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd-ipodvideo.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd-ipodvideo.c')
-rw-r--r--firmware/drivers/lcd-ipodvideo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/drivers/lcd-ipodvideo.c b/firmware/drivers/lcd-ipodvideo.c
index d73d9c3e42..8c404c80e4 100644
--- a/firmware/drivers/lcd-ipodvideo.c
+++ b/firmware/drivers/lcd-ipodvideo.c
@@ -131,7 +131,7 @@ static unsigned lcd_bcm_read32(unsigned address) {
131 return inw(0x30000000) | inw(0x30000000) << 16; 131 return inw(0x30000000) | inw(0x30000000) << 16;
132} 132}
133 133
134static void lcd_bcm_finishup(void) { 134static inline void lcd_bcm_finishup(void) {
135 unsigned data; 135 unsigned data;
136 136
137 outw(0x31, 0x30030000); 137 outw(0x31, 0x30030000);
@@ -148,6 +148,7 @@ static void lcd_bcm_finishup(void) {
148} 148}
149 149
150/* Update a fraction of the display. */ 150/* Update a fraction of the display. */
151void lcd_update_rect(int x, int y, int width, int height) ICODE_ATTR;
151void lcd_update_rect(int x, int y, int width, int height) 152void lcd_update_rect(int x, int y, int width, int height)
152{ 153{
153 int rect1,rect2,rect3,rect4; 154 int rect1,rect2,rect3,rect4;