summaryrefslogtreecommitdiff
path: root/arch/mips/rb532/time.c
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@kernel.org>2008-07-29 09:46:34 +0300
committerRalf Baechle <ralf@linux-mips.org>2008-07-30 21:54:34 +0100
commit8b32d6d00ca890ebb204da1260247c11bba042b3 (patch)
tree37bc0e424b0a9c6be366ef6c3726a23f17befc12 /arch/mips/rb532/time.c
parentfd7ccfa7ac64156a5c1c906e0986b73d481b6dfc (diff)
[MIPS] RB532: Flags are unsigned long
A recent generic change now catches such bugs: <-- snip --> ... CC arch/mips/rb532/time.o cc1: warnings being treated as errors /home/bunk/linux/kernel-2.6/git/linux-2.6/arch/mips/rb532/time.c: In function 'plat_time_init': /home/bunk/linux/kernel-2.6/git/linux-2.6/arch/mips/rb532/time.c:55: error: comparison of distinct pointer types lacks a cast /home/bunk/linux/kernel-2.6/git/linux-2.6/arch/mips/rb532/time.c:66: error: comparison of distinct pointer types lacks a cast make[2]: *** [arch/mips/rb532/time.o] Error 1 <-- snip --> Reported-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/rb532/time.c')
-rw-r--r--arch/mips/rb532/time.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/rb532/time.c b/arch/mips/rb532/time.c
index db74edf8cefb..8e7a46855b50 100644
--- a/arch/mips/rb532/time.c
+++ b/arch/mips/rb532/time.c
@@ -49,8 +49,8 @@ static unsigned long __init cal_r4koff(void)
void __init plat_time_init(void)
{
- unsigned int est_freq, flags;
- unsigned long r4k_offset;
+ unsigned int est_freq;
+ unsigned long flags, r4k_offset;
local_irq_save(flags);