diff options
| -rw-r--r-- | arch/alpha/Kconfig | 1 | ||||
| -rw-r--r-- | arch/arm/mach-versatile/core.c | 2 | ||||
| -rw-r--r-- | arch/avr32/Kconfig | 1 | ||||
| -rw-r--r-- | arch/avr32/mach-at32ap/pio.c | 2 | ||||
| -rw-r--r-- | arch/blackfin/Kconfig | 1 | ||||
| -rw-r--r-- | arch/cris/Kconfig | 1 | ||||
| -rw-r--r-- | arch/frv/Kconfig | 1 | ||||
| -rw-r--r-- | arch/h8300/Kconfig | 1 | ||||
| -rw-r--r-- | arch/m32r/Kconfig | 1 | ||||
| -rw-r--r-- | arch/m68k/Kconfig | 1 | ||||
| -rw-r--r-- | arch/microblaze/Kconfig | 1 | ||||
| -rw-r--r-- | arch/mn10300/Kconfig | 1 | ||||
| -rw-r--r-- | arch/parisc/Kconfig | 1 | ||||
| -rw-r--r-- | arch/powerpc/Kconfig | 1 | ||||
| -rw-r--r-- | arch/powerpc/include/asm/qe_ic.h | 10 | ||||
| -rw-r--r-- | arch/score/Kconfig | 1 | ||||
| -rw-r--r-- | arch/sh/Kconfig | 1 | ||||
| -rw-r--r-- | arch/sparc/Kconfig | 1 | ||||
| -rw-r--r-- | arch/tile/Kconfig | 1 | ||||
| -rw-r--r-- | arch/um/Kconfig.common | 1 | ||||
| -rw-r--r-- | arch/unicore32/Kconfig | 1 | ||||
| -rw-r--r-- | arch/x86/kernel/apb_timer.c | 2 | ||||
| -rw-r--r-- | arch/xtensa/Kconfig | 1 | ||||
| -rw-r--r-- | drivers/sh/intc/internals.h | 4 | ||||
| -rw-r--r-- | include/linux/interrupt.h | 8 | ||||
| -rw-r--r-- | include/linux/irq.h | 7 | ||||
| -rw-r--r-- | kernel/irq/Kconfig | 3 | ||||
| -rw-r--r-- | sound/soc/soc-jack.c | 2 |
28 files changed, 11 insertions, 48 deletions
diff --git a/arch/alpha/Kconfig b/arch/alpha/Kconfig index bd4160c5719..9808998cc07 100644 --- a/arch/alpha/Kconfig +++ b/arch/alpha/Kconfig | |||
| @@ -12,7 +12,6 @@ config ALPHA | |||
| 12 | select GENERIC_IRQ_PROBE | 12 | select GENERIC_IRQ_PROBE |
| 13 | select AUTO_IRQ_AFFINITY if SMP | 13 | select AUTO_IRQ_AFFINITY if SMP |
| 14 | select GENERIC_IRQ_SHOW | 14 | select GENERIC_IRQ_SHOW |
| 15 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 16 | help | 15 | help |
| 17 | The Alpha is a 64-bit general-purpose processor designed and | 16 | The Alpha is a 64-bit general-purpose processor designed and |
| 18 | marketed by the Digital Equipment Corporation of blessed memory, | 17 | marketed by the Digital Equipment Corporation of blessed memory, |
diff --git a/arch/arm/mach-versatile/core.c b/arch/arm/mach-versatile/core.c index 96e59e3ee4f..eb7ffa0ee8b 100644 --- a/arch/arm/mach-versatile/core.c +++ b/arch/arm/mach-versatile/core.c | |||
| @@ -314,7 +314,7 @@ static struct mmci_platform_data mmc0_plat_data = { | |||
| 314 | .gpio_cd = -1, | 314 | .gpio_cd = -1, |
| 315 | }; | 315 | }; |
| 316 | 316 | ||
| 317 | static struct resource chalcd_resources[] = { | 317 | static struct resource char_lcd_resources[] = { |
| 318 | { | 318 | { |
| 319 | .start = VERSATILE_CHAR_LCD_BASE, | 319 | .start = VERSATILE_CHAR_LCD_BASE, |
| 320 | .end = (VERSATILE_CHAR_LCD_BASE + SZ_4K - 1), | 320 | .end = (VERSATILE_CHAR_LCD_BASE + SZ_4K - 1), |
diff --git a/arch/avr32/Kconfig b/arch/avr32/Kconfig index 49642b59f73..e9d689b7c83 100644 --- a/arch/avr32/Kconfig +++ b/arch/avr32/Kconfig | |||
| @@ -10,7 +10,6 @@ config AVR32 | |||
| 10 | select GENERIC_IRQ_PROBE | 10 | select GENERIC_IRQ_PROBE |
| 11 | select HARDIRQS_SW_RESEND | 11 | select HARDIRQS_SW_RESEND |
| 12 | select GENERIC_IRQ_SHOW | 12 | select GENERIC_IRQ_SHOW |
| 13 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 14 | help | 13 | help |
| 15 | AVR32 is a high-performance 32-bit RISC microprocessor core, | 14 | AVR32 is a high-performance 32-bit RISC microprocessor core, |
| 16 | designed for cost-sensitive embedded applications, with particular | 15 | designed for cost-sensitive embedded applications, with particular |
diff --git a/arch/avr32/mach-at32ap/pio.c b/arch/avr32/mach-at32ap/pio.c index 37534103574..f308e1ddc62 100644 --- a/arch/avr32/mach-at32ap/pio.c +++ b/arch/avr32/mach-at32ap/pio.c | |||
| @@ -282,7 +282,7 @@ static struct irq_chip gpio_irqchip = { | |||
| 282 | 282 | ||
| 283 | static void gpio_irq_handler(unsigned irq, struct irq_desc *desc) | 283 | static void gpio_irq_handler(unsigned irq, struct irq_desc *desc) |
| 284 | { | 284 | { |
| 285 | struct pio_device *pio = get_irq_desc_chip_data(desc); | 285 | struct pio_device *pio = irq_desc_get_chip_data(desc); |
| 286 | unsigned gpio_irq; | 286 | unsigned gpio_irq; |
| 287 | 287 | ||
| 288 | gpio_irq = (unsigned) irq_get_handler_data(irq); | 288 | gpio_irq = (unsigned) irq_get_handler_data(irq); |
diff --git a/arch/blackfin/Kconfig b/arch/blackfin/Kconfig index 672c21632f2..8addb1220b4 100644 --- a/arch/blackfin/Kconfig +++ b/arch/blackfin/Kconfig | |||
| @@ -34,7 +34,6 @@ config BLACKFIN | |||
| 34 | select GENERIC_ATOMIC64 | 34 | select GENERIC_ATOMIC64 |
| 35 | select GENERIC_IRQ_PROBE | 35 | select GENERIC_IRQ_PROBE |
| 36 | select IRQ_PER_CPU if SMP | 36 | select IRQ_PER_CPU if SMP |
| 37 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 38 | 37 | ||
| 39 | config GENERIC_CSUM | 38 | config GENERIC_CSUM |
| 40 | def_bool y | 39 | def_bool y |
diff --git a/arch/cris/Kconfig b/arch/cris/Kconfig index 617925ddd14..a6d03069d0f 100644 --- a/arch/cris/Kconfig +++ b/arch/cris/Kconfig | |||
| @@ -55,7 +55,6 @@ config CRIS | |||
| 55 | default y | 55 | default y |
| 56 | select HAVE_IDE | 56 | select HAVE_IDE |
| 57 | select HAVE_GENERIC_HARDIRQS | 57 | select HAVE_GENERIC_HARDIRQS |
| 58 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 59 | select GENERIC_IRQ_SHOW | 58 | select GENERIC_IRQ_SHOW |
| 60 | 59 | ||
| 61 | config HZ | 60 | config HZ |
diff --git a/arch/frv/Kconfig b/arch/frv/Kconfig index 6db8aea5667..064f6219674 100644 --- a/arch/frv/Kconfig +++ b/arch/frv/Kconfig | |||
| @@ -7,7 +7,6 @@ config FRV | |||
| 7 | select HAVE_PERF_EVENTS | 7 | select HAVE_PERF_EVENTS |
| 8 | select HAVE_GENERIC_HARDIRQS | 8 | select HAVE_GENERIC_HARDIRQS |
| 9 | select GENERIC_IRQ_SHOW | 9 | select GENERIC_IRQ_SHOW |
| 10 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 11 | 10 | ||
| 12 | config ZONE_DMA | 11 | config ZONE_DMA |
| 13 | bool | 12 | bool |
diff --git a/arch/h8300/Kconfig b/arch/h8300/Kconfig index 931a1ac99ff..e20322ffcaf 100644 --- a/arch/h8300/Kconfig +++ b/arch/h8300/Kconfig | |||
| @@ -3,7 +3,6 @@ config H8300 | |||
| 3 | default y | 3 | default y |
| 4 | select HAVE_IDE | 4 | select HAVE_IDE |
| 5 | select HAVE_GENERIC_HARDIRQS | 5 | select HAVE_GENERIC_HARDIRQS |
| 6 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 7 | select GENERIC_IRQ_SHOW | 6 | select GENERIC_IRQ_SHOW |
| 8 | 7 | ||
| 9 | config SYMBOL_PREFIX | 8 | config SYMBOL_PREFIX |
diff --git a/arch/m32r/Kconfig b/arch/m32r/Kconfig index b28d0908a40..736b808d229 100644 --- a/arch/m32r/Kconfig +++ b/arch/m32r/Kconfig | |||
| @@ -8,7 +8,6 @@ config M32R | |||
| 8 | select HAVE_KERNEL_BZIP2 | 8 | select HAVE_KERNEL_BZIP2 |
| 9 | select HAVE_KERNEL_LZMA | 9 | select HAVE_KERNEL_LZMA |
| 10 | select HAVE_GENERIC_HARDIRQS | 10 | select HAVE_GENERIC_HARDIRQS |
| 11 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 12 | select GENERIC_IRQ_PROBE | 11 | select GENERIC_IRQ_PROBE |
| 13 | select GENERIC_IRQ_SHOW | 12 | select GENERIC_IRQ_SHOW |
| 14 | 13 | ||
diff --git a/arch/m68k/Kconfig b/arch/m68k/Kconfig index 6e056d3c5d0..75531da02a4 100644 --- a/arch/m68k/Kconfig +++ b/arch/m68k/Kconfig | |||
| @@ -5,7 +5,6 @@ config M68K | |||
| 5 | select HAVE_AOUT if MMU | 5 | select HAVE_AOUT if MMU |
| 6 | select GENERIC_ATOMIC64 if MMU | 6 | select GENERIC_ATOMIC64 if MMU |
| 7 | select HAVE_GENERIC_HARDIRQS if !MMU | 7 | select HAVE_GENERIC_HARDIRQS if !MMU |
| 8 | select GENERIC_HARDIRQS_NO_DEPRECATED if !MMU | ||
| 9 | 8 | ||
| 10 | config RWSEM_GENERIC_SPINLOCK | 9 | config RWSEM_GENERIC_SPINLOCK |
| 11 | bool | 10 | bool |
diff --git a/arch/microblaze/Kconfig b/arch/microblaze/Kconfig index c49c326e7af..851b3bf6e96 100644 --- a/arch/microblaze/Kconfig +++ b/arch/microblaze/Kconfig | |||
| @@ -17,7 +17,6 @@ config MICROBLAZE | |||
| 17 | select OF_EARLY_FLATTREE | 17 | select OF_EARLY_FLATTREE |
| 18 | select HAVE_GENERIC_HARDIRQS | 18 | select HAVE_GENERIC_HARDIRQS |
| 19 | select GENERIC_IRQ_PROBE | 19 | select GENERIC_IRQ_PROBE |
| 20 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 21 | select GENERIC_IRQ_SHOW | 20 | select GENERIC_IRQ_SHOW |
| 22 | 21 | ||
| 23 | config SWAP | 22 | config SWAP |
diff --git a/arch/mn10300/Kconfig b/arch/mn10300/Kconfig index a523c94fa69..feaf09cc863 100644 --- a/arch/mn10300/Kconfig +++ b/arch/mn10300/Kconfig | |||
| @@ -2,7 +2,6 @@ config MN10300 | |||
| 2 | def_bool y | 2 | def_bool y |
| 3 | select HAVE_OPROFILE | 3 | select HAVE_OPROFILE |
| 4 | select HAVE_GENERIC_HARDIRQS | 4 | select HAVE_GENERIC_HARDIRQS |
| 5 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 6 | select GENERIC_IRQ_SHOW | 5 | select GENERIC_IRQ_SHOW |
| 7 | select HAVE_ARCH_TRACEHOOK | 6 | select HAVE_ARCH_TRACEHOOK |
| 8 | select HAVE_ARCH_KGDB | 7 | select HAVE_ARCH_KGDB |
diff --git a/arch/parisc/Kconfig b/arch/parisc/Kconfig index 9b1f427cdc3..69ff049c857 100644 --- a/arch/parisc/Kconfig +++ b/arch/parisc/Kconfig | |||
| @@ -15,7 +15,6 @@ config PARISC | |||
| 15 | select HAVE_GENERIC_HARDIRQS | 15 | select HAVE_GENERIC_HARDIRQS |
| 16 | select GENERIC_IRQ_PROBE | 16 | select GENERIC_IRQ_PROBE |
| 17 | select IRQ_PER_CPU | 17 | select IRQ_PER_CPU |
| 18 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 19 | 18 | ||
| 20 | help | 19 | help |
| 21 | The PA-RISC microprocessor is designed by Hewlett-Packard and used | 20 | The PA-RISC microprocessor is designed by Hewlett-Packard and used |
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index d0e8a1dbf82..b6ff882f695 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig | |||
| @@ -138,7 +138,6 @@ config PPC | |||
| 138 | select HAVE_GENERIC_HARDIRQS | 138 | select HAVE_GENERIC_HARDIRQS |
| 139 | select HAVE_SPARSE_IRQ | 139 | select HAVE_SPARSE_IRQ |
| 140 | select IRQ_PER_CPU | 140 | select IRQ_PER_CPU |
| 141 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 142 | select GENERIC_IRQ_SHOW | 141 | select GENERIC_IRQ_SHOW |
| 143 | select GENERIC_IRQ_SHOW_LEVEL | 142 | select GENERIC_IRQ_SHOW_LEVEL |
| 144 | 143 | ||
diff --git a/arch/powerpc/include/asm/qe_ic.h b/arch/powerpc/include/asm/qe_ic.h index 5f53dba81ea..f706164b0bd 100644 --- a/arch/powerpc/include/asm/qe_ic.h +++ b/arch/powerpc/include/asm/qe_ic.h | |||
| @@ -81,7 +81,7 @@ int qe_ic_set_high_priority(unsigned int virq, unsigned int priority, int high); | |||
| 81 | static inline void qe_ic_cascade_low_ipic(unsigned int irq, | 81 | static inline void qe_ic_cascade_low_ipic(unsigned int irq, |
| 82 | struct irq_desc *desc) | 82 | struct irq_desc *desc) |
| 83 | { | 83 | { |
| 84 | struct qe_ic *qe_ic = irq_desc_get_chip_data(desc); | 84 | struct qe_ic *qe_ic = irq_desc_get_handler_data(desc); |
| 85 | unsigned int cascade_irq = qe_ic_get_low_irq(qe_ic); | 85 | unsigned int cascade_irq = qe_ic_get_low_irq(qe_ic); |
| 86 | 86 | ||
| 87 | if (cascade_irq != NO_IRQ) | 87 | if (cascade_irq != NO_IRQ) |
| @@ -91,7 +91,7 @@ static inline void qe_ic_cascade_low_ipic(unsigned int irq, | |||
| 91 | static inline void qe_ic_cascade_high_ipic(unsigned int irq, | 91 | static inline void qe_ic_cascade_high_ipic(unsigned int irq, |
| 92 | struct irq_desc *desc) | 92 | struct irq_desc *desc) |
| 93 | { | 93 | { |
| 94 | struct qe_ic *qe_ic = irq_desc_get_chip_data(desc); | 94 | struct qe_ic *qe_ic = irq_desc_get_handler_data(desc); |
| 95 | unsigned int cascade_irq = qe_ic_get_high_irq(qe_ic); | 95 | unsigned int cascade_irq = qe_ic_get_high_irq(qe_ic); |
| 96 | 96 | ||
| 97 | if (cascade_irq != NO_IRQ) | 97 | if (cascade_irq != NO_IRQ) |
| @@ -101,7 +101,7 @@ static inline void qe_ic_cascade_high_ipic(unsigned int irq, | |||
| 101 | static inline void qe_ic_cascade_low_mpic(unsigned int irq, | 101 | static inline void qe_ic_cascade_low_mpic(unsigned int irq, |
| 102 | struct irq_desc *desc) | 102 | struct irq_desc *desc) |
| 103 | { | 103 | { |
| 104 | struct qe_ic *qe_ic = irq_desc_get_chip_data(desc); | 104 | struct qe_ic *qe_ic = irq_desc_get_handler_data(desc); |
| 105 | unsigned int cascade_irq = qe_ic_get_low_irq(qe_ic); | 105 | unsigned int cascade_irq = qe_ic_get_low_irq(qe_ic); |
| 106 | struct irq_chip *chip = irq_desc_get_chip(desc); | 106 | struct irq_chip *chip = irq_desc_get_chip(desc); |
| 107 | 107 | ||
| @@ -114,7 +114,7 @@ static inline void qe_ic_cascade_low_mpic(unsigned int irq, | |||
| 114 | static inline void qe_ic_cascade_high_mpic(unsigned int irq, | 114 | static inline void qe_ic_cascade_high_mpic(unsigned int irq, |
| 115 | struct irq_desc *desc) | 115 | struct irq_desc *desc) |
| 116 | { | 116 | { |
| 117 | struct qe_ic *qe_ic = irq_desc_get_chip_data(desc); | 117 | struct qe_ic *qe_ic = irq_desc_get_handler_data(desc); |
| 118 | unsigned int cascade_irq = qe_ic_get_high_irq(qe_ic); | 118 | unsigned int cascade_irq = qe_ic_get_high_irq(qe_ic); |
| 119 | struct irq_chip *chip = irq_desc_get_chip(desc); | 119 | struct irq_chip *chip = irq_desc_get_chip(desc); |
| 120 | 120 | ||
| @@ -127,7 +127,7 @@ static inline void qe_ic_cascade_high_mpic(unsigned int irq, | |||
| 127 | static inline void qe_ic_cascade_muxed_mpic(unsigned int irq, | 127 | static inline void qe_ic_cascade_muxed_mpic(unsigned int irq, |
| 128 | struct irq_desc *desc) | 128 | struct irq_desc *desc) |
| 129 | { | 129 | { |
| 130 | struct qe_ic *qe_ic = irq_desc_get_chip_data(desc); | 130 | struct qe_ic *qe_ic = irq_desc_get_handler_data(desc); |
| 131 | unsigned int cascade_irq; | 131 | unsigned int cascade_irq; |
| 132 | struct irq_chip *chip = irq_desc_get_chip(desc); | 132 | struct irq_chip *chip = irq_desc_get_chip(desc); |
| 133 | 133 | ||
diff --git a/arch/score/Kconfig b/arch/score/Kconfig index 4278bbc032c..e73bc781cc1 100644 --- a/arch/score/Kconfig +++ b/arch/score/Kconfig | |||
| @@ -3,7 +3,6 @@ menu "Machine selection" | |||
| 3 | config SCORE | 3 | config SCORE |
| 4 | def_bool y | 4 | def_bool y |
| 5 | select HAVE_GENERIC_HARDIRQS | 5 | select HAVE_GENERIC_HARDIRQS |
| 6 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 7 | select GENERIC_IRQ_SHOW | 6 | select GENERIC_IRQ_SHOW |
| 8 | 7 | ||
| 9 | choice | 8 | choice |
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig index 9af3c8d0776..bc439de48cd 100644 --- a/arch/sh/Kconfig +++ b/arch/sh/Kconfig | |||
| @@ -23,7 +23,6 @@ config SUPERH | |||
| 23 | select HAVE_SPARSE_IRQ | 23 | select HAVE_SPARSE_IRQ |
| 24 | select RTC_LIB | 24 | select RTC_LIB |
| 25 | select GENERIC_ATOMIC64 | 25 | select GENERIC_ATOMIC64 |
| 26 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 27 | select GENERIC_IRQ_SHOW | 26 | select GENERIC_IRQ_SHOW |
| 28 | help | 27 | help |
| 29 | The SuperH is a RISC processor targeted for use in embedded systems | 28 | The SuperH is a RISC processor targeted for use in embedded systems |
diff --git a/arch/sparc/Kconfig b/arch/sparc/Kconfig index 14b234631f5..e560d102215 100644 --- a/arch/sparc/Kconfig +++ b/arch/sparc/Kconfig | |||
| @@ -51,7 +51,6 @@ config SPARC64 | |||
| 51 | select HAVE_PERF_EVENTS | 51 | select HAVE_PERF_EVENTS |
| 52 | select PERF_USE_VMALLOC | 52 | select PERF_USE_VMALLOC |
| 53 | select HAVE_GENERIC_HARDIRQS | 53 | select HAVE_GENERIC_HARDIRQS |
| 54 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 55 | select GENERIC_IRQ_SHOW | 54 | select GENERIC_IRQ_SHOW |
| 56 | select IRQ_PREFLOW_FASTEOI | 55 | select IRQ_PREFLOW_FASTEOI |
| 57 | 56 | ||
diff --git a/arch/tile/Kconfig b/arch/tile/Kconfig index 5e34a9fee9b..6e2cdd5ae96 100644 --- a/arch/tile/Kconfig +++ b/arch/tile/Kconfig | |||
| @@ -11,7 +11,6 @@ config TILE | |||
| 11 | select HAVE_GENERIC_HARDIRQS | 11 | select HAVE_GENERIC_HARDIRQS |
| 12 | select GENERIC_IRQ_PROBE | 12 | select GENERIC_IRQ_PROBE |
| 13 | select GENERIC_PENDING_IRQ if SMP | 13 | select GENERIC_PENDING_IRQ if SMP |
| 14 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 15 | select GENERIC_IRQ_SHOW | 14 | select GENERIC_IRQ_SHOW |
| 16 | 15 | ||
| 17 | # FIXME: investigate whether we need/want these options. | 16 | # FIXME: investigate whether we need/want these options. |
diff --git a/arch/um/Kconfig.common b/arch/um/Kconfig.common index 109ddc0071c..a9234838e8a 100644 --- a/arch/um/Kconfig.common +++ b/arch/um/Kconfig.common | |||
| @@ -7,7 +7,6 @@ config UML | |||
| 7 | bool | 7 | bool |
| 8 | default y | 8 | default y |
| 9 | select HAVE_GENERIC_HARDIRQS | 9 | select HAVE_GENERIC_HARDIRQS |
| 10 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 11 | select GENERIC_IRQ_SHOW | 10 | select GENERIC_IRQ_SHOW |
| 12 | 11 | ||
| 13 | config MMU | 12 | config MMU |
diff --git a/arch/unicore32/Kconfig b/arch/unicore32/Kconfig index 04e024919b2..d3a303246c9 100644 --- a/arch/unicore32/Kconfig +++ b/arch/unicore32/Kconfig | |||
| @@ -10,7 +10,6 @@ config UNICORE32 | |||
| 10 | select HAVE_KERNEL_LZMA | 10 | select HAVE_KERNEL_LZMA |
| 11 | select GENERIC_FIND_FIRST_BIT | 11 | select GENERIC_FIND_FIRST_BIT |
| 12 | select GENERIC_IRQ_PROBE | 12 | select GENERIC_IRQ_PROBE |
| 13 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 14 | select GENERIC_IRQ_SHOW | 13 | select GENERIC_IRQ_SHOW |
| 15 | select ARCH_WANT_FRAME_POINTERS | 14 | select ARCH_WANT_FRAME_POINTERS |
| 16 | help | 15 | help |
diff --git a/arch/x86/kernel/apb_timer.c b/arch/x86/kernel/apb_timer.c index 1293c709ee8..cd1ffed4ee2 100644 --- a/arch/x86/kernel/apb_timer.c +++ b/arch/x86/kernel/apb_timer.c | |||
| @@ -316,7 +316,7 @@ static void apbt_setup_irq(struct apbt_dev *adev) | |||
| 316 | irq_modify_status(adev->irq, 0, IRQ_MOVE_PCNTXT); | 316 | irq_modify_status(adev->irq, 0, IRQ_MOVE_PCNTXT); |
| 317 | irq_set_affinity(adev->irq, cpumask_of(adev->cpu)); | 317 | irq_set_affinity(adev->irq, cpumask_of(adev->cpu)); |
| 318 | /* APB timer irqs are set up as mp_irqs, timer is edge type */ | 318 | /* APB timer irqs are set up as mp_irqs, timer is edge type */ |
| 319 | __set_irq_handler(adev->irq, handle_edge_irq, 0, "edge"); | 319 | __irq_set_handler(adev->irq, handle_edge_irq, 0, "edge"); |
| 320 | 320 | ||
| 321 | if (system_state == SYSTEM_BOOTING) { | 321 | if (system_state == SYSTEM_BOOTING) { |
| 322 | if (request_irq(adev->irq, apbt_interrupt_handler, | 322 | if (request_irq(adev->irq, apbt_interrupt_handler, |
diff --git a/arch/xtensa/Kconfig b/arch/xtensa/Kconfig index 1d730b5579a..7c275f5d0df 100644 --- a/arch/xtensa/Kconfig +++ b/arch/xtensa/Kconfig | |||
| @@ -9,7 +9,6 @@ config XTENSA | |||
| 9 | select HAVE_IDE | 9 | select HAVE_IDE |
| 10 | select HAVE_GENERIC_HARDIRQS | 10 | select HAVE_GENERIC_HARDIRQS |
| 11 | select GENERIC_IRQ_SHOW | 11 | select GENERIC_IRQ_SHOW |
| 12 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
| 13 | help | 12 | help |
| 14 | Xtensa processors are 32-bit RISC machines designed by Tensilica | 13 | Xtensa processors are 32-bit RISC machines designed by Tensilica |
| 15 | primarily for embedded systems. These processors are both | 14 | primarily for embedded systems. These processors are both |
diff --git a/drivers/sh/intc/internals.h b/drivers/sh/intc/internals.h index df36a421e67..5b934851efa 100644 --- a/drivers/sh/intc/internals.h +++ b/drivers/sh/intc/internals.h | |||
| @@ -86,7 +86,7 @@ enum { MODE_ENABLE_REG = 0, /* Bit(s) set -> interrupt enabled */ | |||
| 86 | 86 | ||
| 87 | static inline struct intc_desc_int *get_intc_desc(unsigned int irq) | 87 | static inline struct intc_desc_int *get_intc_desc(unsigned int irq) |
| 88 | { | 88 | { |
| 89 | struct irq_chip *chip = get_irq_chip(irq); | 89 | struct irq_chip *chip = irq_get_chip(irq); |
| 90 | 90 | ||
| 91 | return container_of(chip, struct intc_desc_int, chip); | 91 | return container_of(chip, struct intc_desc_int, chip); |
| 92 | } | 92 | } |
| @@ -103,7 +103,7 @@ static inline void activate_irq(int irq) | |||
| 103 | set_irq_flags(irq, IRQF_VALID); | 103 | set_irq_flags(irq, IRQF_VALID); |
| 104 | #else | 104 | #else |
| 105 | /* same effect on other architectures */ | 105 | /* same effect on other architectures */ |
| 106 | set_irq_noprobe(irq); | 106 | irq_set_noprobe(irq); |
| 107 | #endif | 107 | #endif |
| 108 | } | 108 | } |
| 109 | 109 | ||
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 59b72ca1c5d..943c9b53695 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
| @@ -338,14 +338,6 @@ static inline void enable_irq_lockdep_irqrestore(unsigned int irq, unsigned long | |||
| 338 | /* IRQ wakeup (PM) control: */ | 338 | /* IRQ wakeup (PM) control: */ |
| 339 | extern int irq_set_irq_wake(unsigned int irq, unsigned int on); | 339 | extern int irq_set_irq_wake(unsigned int irq, unsigned int on); |
| 340 | 340 | ||
| 341 | #ifndef CONFIG_GENERIC_HARDIRQS_NO_COMPAT | ||
| 342 | /* Please do not use: Use the replacement functions instead */ | ||
| 343 | static inline int set_irq_wake(unsigned int irq, unsigned int on) | ||
| 344 | { | ||
| 345 | return irq_set_irq_wake(irq, on); | ||
| 346 | } | ||
| 347 | #endif | ||
| 348 | |||
| 349 | static inline int enable_irq_wake(unsigned int irq) | 341 | static inline int enable_irq_wake(unsigned int irq) |
| 350 | { | 342 | { |
| 351 | return irq_set_irq_wake(irq, 1); | 343 | return irq_set_irq_wake(irq, 1); |
diff --git a/include/linux/irq.h b/include/linux/irq.h index 2a375a72ce3..09a308072f5 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h | |||
| @@ -64,13 +64,6 @@ typedef void (*irq_preflow_handler_t)(struct irq_data *data); | |||
| 64 | * IRQ_NO_BALANCING - Interrupt cannot be balanced (affinity set) | 64 | * IRQ_NO_BALANCING - Interrupt cannot be balanced (affinity set) |
| 65 | * IRQ_MOVE_PCNTXT - Interrupt can be migrated from process context | 65 | * IRQ_MOVE_PCNTXT - Interrupt can be migrated from process context |
| 66 | * IRQ_NESTED_TRHEAD - Interrupt nests into another thread | 66 | * IRQ_NESTED_TRHEAD - Interrupt nests into another thread |
| 67 | * | ||
| 68 | * Deprecated bits. They are kept updated as long as | ||
| 69 | * CONFIG_GENERIC_HARDIRQS_NO_COMPAT is not set. Will go away soon. These bits | ||
| 70 | * are internal state of the core code and if you really need to acces | ||
| 71 | * them then talk to the genirq maintainer instead of hacking | ||
| 72 | * something weird. | ||
| 73 | * | ||
| 74 | */ | 67 | */ |
| 75 | enum { | 68 | enum { |
| 76 | IRQ_TYPE_NONE = 0x00000000, | 69 | IRQ_TYPE_NONE = 0x00000000, |
diff --git a/kernel/irq/Kconfig b/kernel/irq/Kconfig index a69c333f78e..c574f9a12c4 100644 --- a/kernel/irq/Kconfig +++ b/kernel/irq/Kconfig | |||
| @@ -10,9 +10,6 @@ menu "IRQ subsystem" | |||
| 10 | config GENERIC_HARDIRQS | 10 | config GENERIC_HARDIRQS |
| 11 | def_bool y | 11 | def_bool y |
| 12 | 12 | ||
| 13 | config GENERIC_HARDIRQS_NO_COMPAT | ||
| 14 | bool | ||
| 15 | |||
| 16 | # Options selectable by the architecture code | 13 | # Options selectable by the architecture code |
| 17 | 14 | ||
| 18 | # Make sparse irq Kconfig switch below available | 15 | # Make sparse irq Kconfig switch below available |
diff --git a/sound/soc/soc-jack.c b/sound/soc/soc-jack.c index fcab80b36a3..fc017c0a7b5 100644 --- a/sound/soc/soc-jack.c +++ b/sound/soc/soc-jack.c | |||
| @@ -331,7 +331,7 @@ int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count, | |||
| 331 | goto err; | 331 | goto err; |
| 332 | 332 | ||
| 333 | if (gpios[i].wake) { | 333 | if (gpios[i].wake) { |
| 334 | ret = set_irq_wake(gpio_to_irq(gpios[i].gpio), 1); | 334 | ret = irq_set_irq_wake(gpio_to_irq(gpios[i].gpio), 1); |
| 335 | if (ret != 0) | 335 | if (ret != 0) |
| 336 | printk(KERN_ERR | 336 | printk(KERN_ERR |
| 337 | "Failed to mark GPIO %d as wake source: %d\n", | 337 | "Failed to mark GPIO %d as wake source: %d\n", |
