Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[PATCH] ppc: fix a bunch of warnings

Building a PowerMac kernel with ARCH=powerpc causes a bunch of warnings,
this fixes some of them

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>

authored by

Benjamin Herrenschmidt and committed by
Paul Mackerras
21fe3301 75722d39

+22 -19
+5 -4
arch/powerpc/kernel/prom_init.c
··· 403 403 } 404 404 } 405 405 406 - static int __init prom_getprop(phandle node, const char *pname, 406 + static int inline prom_getprop(phandle node, const char *pname, 407 407 void *value, size_t valuelen) 408 408 { 409 409 return call_prom("getprop", 4, 1, node, ADDR(pname), 410 410 (u32)(unsigned long) value, (u32) valuelen); 411 411 } 412 412 413 - static int __init prom_getproplen(phandle node, const char *pname) 413 + static int inline prom_getproplen(phandle node, const char *pname) 414 414 { 415 415 return call_prom("getproplen", 2, 1, node, ADDR(pname)); 416 416 } 417 417 418 - static int __init prom_setprop(phandle node, const char *pname, 418 + static int inline prom_setprop(phandle node, const char *pname, 419 419 void *value, size_t valuelen) 420 420 { 421 421 return call_prom("setprop", 4, 1, node, ADDR(pname), ··· 1408 1408 struct prom_t *_prom = &RELOC(prom); 1409 1409 char compat[256]; 1410 1410 int len, i = 0; 1411 + #ifdef CONFIG_PPC64 1411 1412 phandle rtas; 1412 - 1413 + #endif 1413 1414 len = prom_getprop(_prom->root, "compatible", 1414 1415 compat, sizeof(compat)-1); 1415 1416 if (len > 0) {
+2 -1
arch/powerpc/kernel/rtas.c
··· 17 17 #include <linux/spinlock.h> 18 18 #include <linux/module.h> 19 19 #include <linux/init.h> 20 + #include <linux/delay.h> 20 21 21 22 #include <asm/prom.h> 22 23 #include <asm/rtas.h> ··· 84 83 while (width-- > 0) 85 84 call_rtas_display_status(' '); 86 85 width = 16; 87 - udelay(500000); 86 + mdelay(500); 88 87 pending_newline = 1; 89 88 } else { 90 89 if (pending_newline) {
+3 -3
drivers/macintosh/via-pmu.c
··· 2667 2667 asleep = 1; 2668 2668 2669 2669 /* Put the CPU into sleep mode */ 2670 - asm volatile("mfspr %0,1008" : "=r" (hid0) :); 2670 + hid0 = mfspr(SPRN_HID0); 2671 2671 hid0 = (hid0 & ~(HID0_NAP | HID0_DOZE)) | HID0_SLEEP; 2672 - asm volatile("mtspr 1008,%0" : : "r" (hid0)); 2673 - _nmask_and_or_msr(0, MSR_POW | MSR_EE); 2672 + mtspr(SPRN_HID0, hid0); 2673 + mtmsr(mfmsr() | MSR_POW | MSR_EE); 2674 2674 udelay(10); 2675 2675 2676 2676 /* OK, we're awake again, start restoring things */
+1
include/asm-powerpc/xmon.h
··· 7 7 extern int xmon(struct pt_regs *excp); 8 8 extern void xmon_printf(const char *fmt, ...); 9 9 extern void xmon_init(int); 10 + extern void xmon_map_scc(void); 10 11 11 12 #endif 12 13 #endif
+11 -11
include/asm-ppc/btext.h
··· 17 17 extern boot_infos_t disp_bi; 18 18 extern int boot_text_mapped; 19 19 20 - void btext_init(boot_infos_t *bi); 21 - void btext_welcome(void); 22 - void btext_prepare_BAT(void); 23 - void btext_setup_display(int width, int height, int depth, int pitch, 24 - unsigned long address); 25 - void map_boot_text(void); 26 - void btext_update_display(unsigned long phys, int width, int height, 27 - int depth, int pitch); 20 + extern void init_boot_display(void); 21 + extern void btext_welcome(void); 22 + extern void btext_prepare_BAT(void); 23 + extern void btext_setup_display(int width, int height, int depth, int pitch, 24 + unsigned long address); 25 + extern void map_boot_text(void); 26 + extern void btext_update_display(unsigned long phys, int width, int height, 27 + int depth, int pitch); 28 28 29 - void btext_drawchar(char c); 30 - void btext_drawstring(const char *str); 31 - void btext_drawhex(unsigned long v); 29 + extern void btext_drawchar(char c); 30 + extern void btext_drawstring(const char *str); 31 + extern void btext_drawhex(unsigned long v); 32 32 33 33 #endif /* __KERNEL__ */ 34 34 #endif /* __PPC_BTEXT_H */