From 40fae1d7188109b07f8b9477ccbe12a12855e958 Mon Sep 17 00:00:00 2001 From: Amaury Pouly Date: Tue, 24 Dec 2013 01:08:51 +0100 Subject: [PATCH] zenxfi2: remove unused function Change-Id: I98acfc9394ac83a45985364fdfad85af2f7d1773 --- firmware/target/arm/imx233/creative-zenxfi2/lcd-zenxfi2.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/firmware/target/arm/imx233/creative-zenxfi2/lcd-zenxfi2.c b/firmware/target/arm/imx233/creative-zenxfi2/lcd-zenxfi2.c index a2dd689fd3..890ff0b586 100644 --- a/firmware/target/arm/imx233/creative-zenxfi2/lcd-zenxfi2.c +++ b/firmware/target/arm/imx233/creative-zenxfi2/lcd-zenxfi2.c @@ -50,11 +50,6 @@ static inline uint32_t encode_16_to_18(uint32_t a) return ((a & 0xff) << 1) | (((a >> 8) & 0xff) << 10); } -static inline uint32_t decode_18_to_16(uint32_t a) -{ - return ((a >> 1) & 0xff) | ((a >> 2) & 0xff00); -} - static void setup_lcdif_clock(void) { /* the LCD seems to work at 24Mhz, so use the xtal clock with no divider */