x86: irqinit_32.c fix style problems

Impact: cleanup

Fix:

WARNING: Use #include <linux/io.h> instead of <asm/io.h>
WARNING: Use #include <linux/delay.h> instead of <asm/delay.h>
ERROR: trailing whitespace
WARNING: externs should be avoided in .c files
ERROR: space required after that ',' (ctx:VxV)
WARNING: space prohibited between function name and open parenthesis '('

total: 2 errors, 4 warnings

Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

authored by

Jaswinder Singh Rajput and committed by
Ingo Molnar
aa09e6cd 7bafaf30

+5 -7
+5 -7
arch/x86/kernel/irqinit_32.c
··· 9 9 #include <linux/kernel_stat.h> 10 10 #include <linux/sysdev.h> 11 11 #include <linux/bitops.h> 12 + #include <linux/io.h> 13 + #include <linux/delay.h> 12 14 13 15 #include <asm/atomic.h> 14 16 #include <asm/system.h> 15 - #include <asm/io.h> 16 17 #include <asm/timer.h> 17 18 #include <asm/pgtable.h> 18 - #include <asm/delay.h> 19 19 #include <asm/desc.h> 20 20 #include <asm/apic.h> 21 21 #include <asm/arch_hooks.h> 22 22 #include <asm/i8259.h> 23 - 23 + #include <asm/traps.h> 24 24 25 25 26 26 /* ··· 34 34 * leads to races. IBM designers who came up with it should 35 35 * be shot. 36 36 */ 37 - 38 37 39 38 static irqreturn_t math_error_irq(int cpl, void *dev_id) 40 39 { 41 - extern void math_error(void __user *); 42 - outb(0,0xF0); 40 + outb(0, 0xF0); 43 41 if (ignore_fpu_irq || !boot_cpu_data.hard_math) 44 42 return IRQ_NONE; 45 43 math_error((void __user *)get_irq_regs()->ip); ··· 54 56 .name = "fpu", 55 57 }; 56 58 57 - void __init init_ISA_irqs (void) 59 + void __init init_ISA_irqs(void) 58 60 { 59 61 int i; 60 62