Fixed warnings on iFP.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8550 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Tomasz Malesinski 2006-02-03 23:14:42 +00:00
parent 3c17330af6
commit c31d2f84b7
5 changed files with 28 additions and 7 deletions

View file

@ -233,6 +233,9 @@ void gray_show(bool enable)
_gray_rb->timer_register(1, NULL, CPU_FREQ / 67, 1, _timer_isr);
#elif CONFIG_LCD == LCD_S1D15E06
_gray_rb->timer_register(1, NULL, CPU_FREQ / 70, 1, _timer_isr);
#elif CONFIG_LCD == LCD_IFP7XX
/* TODO: implement for iFP */
(void)_timer_isr;
#endif
_gray_rb->screen_dump_set_hook(gray_screendump_hook);
}