zenxfi2: remove unused function

Change-Id: I98acfc9394ac83a45985364fdfad85af2f7d1773
This commit is contained in:
Amaury Pouly 2013-12-24 01:08:51 +01:00
parent a56837b46d
commit 40fae1d718

View file

@ -50,11 +50,6 @@ static inline uint32_t encode_16_to_18(uint32_t a)
return ((a & 0xff) << 1) | (((a >> 8) & 0xff) << 10); 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) static void setup_lcdif_clock(void)
{ {
/* the LCD seems to work at 24Mhz, so use the xtal clock with no divider */ /* the LCD seems to work at 24Mhz, so use the xtal clock with no divider */