mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
zenxfi2: remove unused function
Change-Id: I98acfc9394ac83a45985364fdfad85af2f7d1773
This commit is contained in:
parent
a56837b46d
commit
40fae1d718
1 changed files with 0 additions and 5 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue