Commit 7da1272547ebe96982a42292dfc833457708f4da

Authored by Kyle McMartin
1 parent 8ed5c00d7c

parisc: kill __do_IRQ

Signed-off-by: Kyle McMartin <kyle@redhat.com>

Showing 3 changed files with 4 additions and 7 deletions Side-by-side Diff

... ... @@ -18,6 +18,7 @@
18 18 select BUG
19 19 select HAVE_PERF_EVENTS
20 20 select GENERIC_ATOMIC64 if !64BIT
  21 + select GENERIC_HARDIRQS_NO__DO_IRQ
21 22 help
22 23 The PA-RISC microprocessor is designed by Hewlett-Packard and used
23 24 in many of their workstations & servers (HP9000 700 and 800 series,
... ... @@ -83,6 +84,9 @@
83 84 config IRQ_PER_CPU
84 85 bool
85 86 default y
  87 +
  88 +config GENERIC_HARDIRQS_NO__DO_IRQ
  89 + def_bool y
86 90  
87 91 # unless you want to implement ACPI on PA-RISC ... ;-)
88 92 config PM
arch/parisc/include/asm/irq.h
... ... @@ -32,9 +32,6 @@
32 32 }
33 33  
34 34 struct irq_chip;
35   -struct irq_desc;
36   -
37   -extern void parisc_do_IRQ(unsigned int irq, struct irq_desc *desc);
38 35  
39 36 /*
40 37 * Some useful "we don't have to do anything here" handlers. Should
arch/parisc/kernel/irq.c
... ... @@ -417,9 +417,4 @@
417 417 set_eiem(cpu_eiem); /* EIEM : enable all external intr */
418 418  
419 419 }
420   -
421   -void parisc_do_IRQ(unsigned int irq, struct irq_desc *desc)
422   -{
423   - __do_IRQ(irq);
424   -}