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

parisc: kill __do_IRQ

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

+4 -7
+4
arch/parisc/Kconfig
··· 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, ··· 84 83 config IRQ_PER_CPU 85 84 bool 86 85 default y 86 + 87 + config GENERIC_HARDIRQS_NO__DO_IRQ 88 + def_bool y 87 89 88 90 # unless you want to implement ACPI on PA-RISC ... ;-) 89 91 config PM
-3
arch/parisc/include/asm/irq.h
··· 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
-4
arch/parisc/kernel/irq.c
··· 418 418 419 419 } 420 420 421 - void parisc_do_IRQ(unsigned int irq, struct irq_desc *desc) 422 - { 423 - __do_IRQ(irq); 424 - }