[PATCH] ppc32 8xx: fix warnings in m8xx_setup.c

The following patch fixes two warnings in arch/ppc/syslib/m8xx_setup.c

Signed-off-by: Marcelo Tosatti <marcelo.tosatti@cyclades.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Marcelo Tosatti and committed by
Linus Torvalds
62c592ed 81d4af13

+3 -3
+3 -3
arch/ppc/syslib/m8xx_setup.c
··· 57 57 extern void m8xx_ide_init(void); 58 58 59 59 extern unsigned long find_available_memory(void); 60 - extern void m8xx_cpm_reset(); 60 + extern void m8xx_cpm_reset(void); 61 61 extern void m8xx_wdt_handler_install(bd_t *bp); 62 62 extern void rpxfb_alloc_pages(void); 63 63 extern void cpm_interrupt_init(void); ··· 266 266 267 267 bp = (bd_t *)__res; 268 268 269 - seq_printf(m, "clock\t\t: %ldMHz\n" 270 - "bus clock\t: %ldMHz\n", 269 + seq_printf(m, "clock\t\t: %uMHz\n" 270 + "bus clock\t: %uMHz\n", 271 271 bp->bi_intfreq / 1000000, 272 272 bp->bi_busfreq / 1000000); 273 273