diff options
Diffstat (limited to 'include/asm-x86_64')
-rw-r--r-- | include/asm-x86_64/apic.h | 2 | ||||
-rw-r--r-- | include/asm-x86_64/floppy.h | 6 | ||||
-rw-r--r-- | include/asm-x86_64/irq_regs.h | 1 | ||||
-rw-r--r-- | include/asm-x86_64/proto.h | 4 |
4 files changed, 7 insertions, 6 deletions
diff --git a/include/asm-x86_64/apic.h b/include/asm-x86_64/apic.h index 9e66d32330c9..e81d0f289f0b 100644 --- a/include/asm-x86_64/apic.h +++ b/include/asm-x86_64/apic.h | |||
@@ -77,7 +77,7 @@ extern void sync_Arb_IDs (void); | |||
77 | extern void init_bsp_APIC (void); | 77 | extern void init_bsp_APIC (void); |
78 | extern void setup_local_APIC (void); | 78 | extern void setup_local_APIC (void); |
79 | extern void init_apic_mappings (void); | 79 | extern void init_apic_mappings (void); |
80 | extern void smp_local_timer_interrupt (struct pt_regs * regs); | 80 | extern void smp_local_timer_interrupt (void); |
81 | extern void setup_boot_APIC_clock (void); | 81 | extern void setup_boot_APIC_clock (void); |
82 | extern void setup_secondary_APIC_clock (void); | 82 | extern void setup_secondary_APIC_clock (void); |
83 | extern int APIC_init_uniprocessor (void); | 83 | extern int APIC_init_uniprocessor (void); |
diff --git a/include/asm-x86_64/floppy.h b/include/asm-x86_64/floppy.h index 32ff5d132714..6ea13c3806f3 100644 --- a/include/asm-x86_64/floppy.h +++ b/include/asm-x86_64/floppy.h | |||
@@ -51,7 +51,7 @@ static char *virtual_dma_addr; | |||
51 | static int virtual_dma_mode; | 51 | static int virtual_dma_mode; |
52 | static int doing_pdma; | 52 | static int doing_pdma; |
53 | 53 | ||
54 | static irqreturn_t floppy_hardint(int irq, void *dev_id, struct pt_regs * regs) | 54 | static irqreturn_t floppy_hardint(int irq, void *dev_id) |
55 | { | 55 | { |
56 | register unsigned char st; | 56 | register unsigned char st; |
57 | 57 | ||
@@ -63,7 +63,7 @@ static irqreturn_t floppy_hardint(int irq, void *dev_id, struct pt_regs * regs) | |||
63 | static int dma_wait=0; | 63 | static int dma_wait=0; |
64 | #endif | 64 | #endif |
65 | if (!doing_pdma) | 65 | if (!doing_pdma) |
66 | return floppy_interrupt(irq, dev_id, regs); | 66 | return floppy_interrupt(irq, dev_id); |
67 | 67 | ||
68 | #ifdef TRACE_FLPY_INT | 68 | #ifdef TRACE_FLPY_INT |
69 | if(!calls) | 69 | if(!calls) |
@@ -106,7 +106,7 @@ static irqreturn_t floppy_hardint(int irq, void *dev_id, struct pt_regs * regs) | |||
106 | dma_wait=0; | 106 | dma_wait=0; |
107 | #endif | 107 | #endif |
108 | doing_pdma = 0; | 108 | doing_pdma = 0; |
109 | floppy_interrupt(irq, dev_id, regs); | 109 | floppy_interrupt(irq, dev_id); |
110 | return IRQ_HANDLED; | 110 | return IRQ_HANDLED; |
111 | } | 111 | } |
112 | #ifdef TRACE_FLPY_INT | 112 | #ifdef TRACE_FLPY_INT |
diff --git a/include/asm-x86_64/irq_regs.h b/include/asm-x86_64/irq_regs.h new file mode 100644 index 000000000000..3dd9c0b70270 --- /dev/null +++ b/include/asm-x86_64/irq_regs.h | |||
@@ -0,0 +1 @@ | |||
#include <asm-generic/irq_regs.h> | |||
diff --git a/include/asm-x86_64/proto.h b/include/asm-x86_64/proto.h index c28fc2db2171..c181fef786e4 100644 --- a/include/asm-x86_64/proto.h +++ b/include/asm-x86_64/proto.h | |||
@@ -66,7 +66,7 @@ extern void free_bootmem_generic(unsigned long phys, unsigned len); | |||
66 | extern void load_gs_index(unsigned gs); | 66 | extern void load_gs_index(unsigned gs); |
67 | 67 | ||
68 | extern void stop_timer_interrupt(void); | 68 | extern void stop_timer_interrupt(void); |
69 | extern void main_timer_handler(struct pt_regs *regs); | 69 | extern void main_timer_handler(void); |
70 | 70 | ||
71 | extern unsigned long end_pfn_map; | 71 | extern unsigned long end_pfn_map; |
72 | 72 | ||
@@ -124,7 +124,7 @@ extern int notsc_setup(char *); | |||
124 | 124 | ||
125 | extern int gsi_irq_sharing(int gsi); | 125 | extern int gsi_irq_sharing(int gsi); |
126 | 126 | ||
127 | extern void smp_local_timer_interrupt(struct pt_regs * regs); | 127 | extern void smp_local_timer_interrupt(void); |
128 | 128 | ||
129 | long do_arch_prctl(struct task_struct *task, int code, unsigned long addr); | 129 | long do_arch_prctl(struct task_struct *task, int code, unsigned long addr); |
130 | 130 | ||