summaryrefslogtreecommitdiffstats
path: root/firmware/target/arm/as3525/lcd-ssd1303.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-04-05 12:17:11 +0000
committerThomas Martitz <kugel@rockbox.org>2010-04-05 12:17:11 +0000
commitae69e92008046b447833dde37e1fbc55c229cdcf (patch)
tree67dd52b6016f8f50e613b7f4dc0af4fe61e0d8bb /firmware/target/arm/as3525/lcd-ssd1303.c
parent20003ec1c080f683f5c3b76537a419a231f6cf14 (diff)
downloadrockbox-ae69e92008046b447833dde37e1fbc55c229cdcf.tar.gz
rockbox-ae69e92008046b447833dde37e1fbc55c229cdcf.zip
as2525(v2): We don't need yuv blitting/greylib support in the bootloader so don't compile it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25483 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/as3525/lcd-ssd1303.c')
-rw-r--r--firmware/target/arm/as3525/lcd-ssd1303.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/target/arm/as3525/lcd-ssd1303.c b/firmware/target/arm/as3525/lcd-ssd1303.c
index e4437e70ca..09f2638ff7 100644
--- a/firmware/target/arm/as3525/lcd-ssd1303.c
+++ b/firmware/target/arm/as3525/lcd-ssd1303.c
@@ -216,6 +216,8 @@ void lcd_blit_mono(const unsigned char *data, int x, int by, int width,
}
}
+
+#ifndef BOOTLOADER
/* Helper function for lcd_grey_phase_blit(). */
void lcd_grey_data(unsigned char *values, unsigned char *phases, int count);
@@ -242,6 +244,9 @@ void lcd_blit_grey_phase(unsigned char *values, unsigned char *phases,
}
}
+#endif
+
+
/* Update the display.
This must be called after all other LCD functions that change the display. */
void lcd_update(void) ICODE_ATTR;