[MIPS] Ocelot C: Fix warning about missmatching format string.
authorRalf Baechle <ralf@linux-mips.org>
Fri, 3 Nov 2006 17:48:17 +0000 (17:48 +0000)
committerRalf Baechle <ralf@linux-mips.org>
Mon, 6 Nov 2006 20:55:36 +0000 (20:55 +0000)
  CC      arch/mips/momentum/ocelot_c/setup.o
arch/mips/momentum/ocelot_c/setup.c: In function 'momenco_time_init':
arch/mips/momentum/ocelot_c/setup.c:223: warning: format '%d' expects type 'int', but argument 2 has type 'long unsigned int'

Change data type to match format string; a 32-bit type better suits our
needs.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/momentum/ocelot_c/prom.c
arch/mips/momentum/ocelot_c/setup.c

index 4c50a147f42977a7c0be810a3fff6166c0bb71a0..1f67728d6a495c9fef8c450a9f7fd95df114b146 100644 (file)
@@ -29,7 +29,7 @@
 struct callvectors* debug_vectors;
 
 extern unsigned long marvell_base;
-extern unsigned long cpu_clock;
+extern unsigned int cpu_clock;
 
 #ifdef CONFIG_MV643XX_ETH
 extern unsigned char prom_mac_addr_base[6];
index 0a3ffa33771da8ec7cfb1e4f0118e8e506f12259..7832d4e04c38d15c1b3aa32162d18d40a709a9cc 100644 (file)
@@ -70,7 +70,7 @@
 #include "ocelot_c_fpga.h"
 
 unsigned long marvell_base;
-unsigned long cpu_clock;
+unsigned int cpu_clock;
 
 /* These functions are used for rebooting or halting the machine*/
 extern void momenco_ocelot_restart(char *command);