1
0
Fork 0
forked from len0rd/rockbox

Fixed warnings when logf is enabled.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15243 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Miika Pekkarinen 2007-10-21 11:02:51 +00:00
parent 11251f4555
commit 47cdc89552
2 changed files with 11 additions and 5 deletions

View file

@ -118,13 +118,13 @@ struct screen screens[NB_SCREENS] =
.backlight_on=&backlight_on, .backlight_on=&backlight_on,
.backlight_off=&backlight_off, .backlight_off=&backlight_off,
.is_backlight_on=&is_backlight_on, .is_backlight_on=&is_backlight_on,
.backlight_set_timeout=&backlight_set_timeout .backlight_set_timeout=&backlight_set_timeout,
#ifdef HAS_BUTTONBAR #ifdef HAS_BUTTONBAR
,.has_buttonbar=false .has_buttonbar=false
#endif #endif
} },
#ifdef HAVE_REMOTE_LCD #if NB_SCREENS == 2
,{ {
.screen_type=SCREEN_REMOTE, .screen_type=SCREEN_REMOTE,
.width=LCD_REMOTE_WIDTH, .width=LCD_REMOTE_WIDTH,
.height=LCD_REMOTE_HEIGHT, .height=LCD_REMOTE_HEIGHT,

View file

@ -75,7 +75,10 @@ char * cpu_boost_log_getlog_first(void)
#if NUM_CORES > 1 #if NUM_CORES > 1
spinlock_unlock(&boostctrl_spin); spinlock_unlock(&boostctrl_spin);
#endif #endif
return first;
} }
char * cpu_boost_log_getlog_next(void) char * cpu_boost_log_getlog_next(void)
{ {
int message; int message;
@ -97,7 +100,10 @@ char * cpu_boost_log_getlog_next(void)
#if NUM_CORES > 1 #if NUM_CORES > 1
spinlock_unlock(&boostctrl_spin); spinlock_unlock(&boostctrl_spin);
#endif #endif
return next;
} }
void cpu_boost_(bool on_off, char* location, int line) void cpu_boost_(bool on_off, char* location, int line)
{ {
#if NUM_CORES > 1 #if NUM_CORES > 1