提交 31780715 编写于 作者: R Randy Dunlap 提交者: Ingo Molnar

x86/visws: fix printk format warnings

Fix visws printk format warnings:

/local/linsrc/linux-2.6.24-git15/arch/x86/mach-visws/traps.c:50: warning: format '%#lx' expects type 'long unsigned int', but argument 2 has type 'u32'
/local/linsrc/linux-2.6.24-git15/arch/x86/mach-visws/traps.c:50: warning: format '%#lx' expects type 'long unsigned int', but argument 3 has type 'u32'
Signed-off-by: NRandy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
上级 f2f7abcb
...@@ -46,8 +46,9 @@ static __init void cobalt_init(void) ...@@ -46,8 +46,9 @@ static __init void cobalt_init(void)
*/ */
set_fixmap(FIX_APIC_BASE, APIC_DEFAULT_PHYS_BASE); set_fixmap(FIX_APIC_BASE, APIC_DEFAULT_PHYS_BASE);
setup_local_APIC(); setup_local_APIC();
printk(KERN_INFO "Local APIC Version %#lx, ID %#lx\n", printk(KERN_INFO "Local APIC Version %#x, ID %#x\n",
apic_read(APIC_LVR), apic_read(APIC_ID)); (unsigned int)apic_read(APIC_LVR),
(unsigned int)apic_read(APIC_ID));
set_fixmap(FIX_CO_CPU, CO_CPU_PHYS); set_fixmap(FIX_CO_CPU, CO_CPU_PHYS);
set_fixmap(FIX_CO_APIC, CO_APIC_PHYS); set_fixmap(FIX_CO_APIC, CO_APIC_PHYS);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册