From c31d2f84b73b7f08f949cebcff0e5f4d1babd529 Mon Sep 17 00:00:00 2001 From: Tomasz Malesinski Date: Fri, 3 Feb 2006 23:14:42 +0000 Subject: Fixed warnings on iFP. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8550 a1c6a512-1295-4272-9138-f99709370657 --- firmware/timer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'firmware/timer.c') diff --git a/firmware/timer.c b/firmware/timer.c index cdbd928d67..d4ce069637 100644 --- a/firmware/timer.c +++ b/firmware/timer.c @@ -56,8 +56,8 @@ static bool timer_set(long cycles, bool start) int phi = 0; /* bits for the prescaler */ int prescale = 1; -#if CONFIG_CPU==PP5020 - /* TODO: Implement for iPod */ +#if (CONFIG_CPU==PP5020) || (CONFIG_CPU==PNX0101) + /* TODO: Implement for iPod and iFP */ (void)start; (void)phi; #endif @@ -162,7 +162,7 @@ bool timer_register(int reg_prio, void (*unregister_callback)(void), if (reg_prio <= timer_prio || cycles == 0) return false; -#if CONFIG_CPU==PP5020 +#if (CONFIG_CPU==PP5020) || (CONFIG_CPU==PNX0101) /* TODO: Implement for iPod */ (void)int_prio; #endif -- cgit v1.2.3