diff options
| -rw-r--r-- | arch/alpha/kernel/irq_alpha.c | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/irq_i8259.c | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/irq_impl.h | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/irq_pyxis.c | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/irq_srm.c | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/sys_alcor.c | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/sys_cabriolet.c | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/sys_dp264.c | 6 | ||||
| -rw-r--r-- | arch/alpha/kernel/sys_eb64p.c | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/sys_eiger.c | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/sys_jensen.c | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/sys_marvel.c | 10 | ||||
| -rw-r--r-- | arch/alpha/kernel/sys_mikasa.c | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/sys_noritake.c | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/sys_rawhide.c | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/sys_rx164.c | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/sys_sable.c | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/sys_takara.c | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/sys_titan.c | 4 | ||||
| -rw-r--r-- | arch/alpha/kernel/sys_wildfire.c | 2 |
20 files changed, 27 insertions, 27 deletions
diff --git a/arch/alpha/kernel/irq_alpha.c b/arch/alpha/kernel/irq_alpha.c index 67c19f8a9944..38c805dfc544 100644 --- a/arch/alpha/kernel/irq_alpha.c +++ b/arch/alpha/kernel/irq_alpha.c | |||
| @@ -227,7 +227,7 @@ struct irqaction timer_irqaction = { | |||
| 227 | .name = "timer", | 227 | .name = "timer", |
| 228 | }; | 228 | }; |
| 229 | 229 | ||
| 230 | static struct hw_interrupt_type rtc_irq_type = { | 230 | static struct irq_chip rtc_irq_type = { |
| 231 | .typename = "RTC", | 231 | .typename = "RTC", |
| 232 | .startup = rtc_startup, | 232 | .startup = rtc_startup, |
| 233 | .shutdown = rtc_enable_disable, | 233 | .shutdown = rtc_enable_disable, |
diff --git a/arch/alpha/kernel/irq_i8259.c b/arch/alpha/kernel/irq_i8259.c index 9405bee9894e..50bfec9b588f 100644 --- a/arch/alpha/kernel/irq_i8259.c +++ b/arch/alpha/kernel/irq_i8259.c | |||
| @@ -83,7 +83,7 @@ i8259a_end_irq(unsigned int irq) | |||
| 83 | i8259a_enable_irq(irq); | 83 | i8259a_enable_irq(irq); |
| 84 | } | 84 | } |
| 85 | 85 | ||
| 86 | struct hw_interrupt_type i8259a_irq_type = { | 86 | struct irq_chip i8259a_irq_type = { |
| 87 | .typename = "XT-PIC", | 87 | .typename = "XT-PIC", |
| 88 | .startup = i8259a_startup_irq, | 88 | .startup = i8259a_startup_irq, |
| 89 | .shutdown = i8259a_disable_irq, | 89 | .shutdown = i8259a_disable_irq, |
diff --git a/arch/alpha/kernel/irq_impl.h b/arch/alpha/kernel/irq_impl.h index cc9a8a7aa279..b63ccd7386f1 100644 --- a/arch/alpha/kernel/irq_impl.h +++ b/arch/alpha/kernel/irq_impl.h | |||
| @@ -36,7 +36,7 @@ extern void i8259a_disable_irq(unsigned int); | |||
| 36 | extern void i8259a_mask_and_ack_irq(unsigned int); | 36 | extern void i8259a_mask_and_ack_irq(unsigned int); |
| 37 | extern unsigned int i8259a_startup_irq(unsigned int); | 37 | extern unsigned int i8259a_startup_irq(unsigned int); |
| 38 | extern void i8259a_end_irq(unsigned int); | 38 | extern void i8259a_end_irq(unsigned int); |
| 39 | extern struct hw_interrupt_type i8259a_irq_type; | 39 | extern struct irq_chip i8259a_irq_type; |
| 40 | extern void init_i8259a_irqs(void); | 40 | extern void init_i8259a_irqs(void); |
| 41 | 41 | ||
| 42 | extern void handle_irq(int irq); | 42 | extern void handle_irq(int irq); |
diff --git a/arch/alpha/kernel/irq_pyxis.c b/arch/alpha/kernel/irq_pyxis.c index d53edbccbfe5..69199a76ec4a 100644 --- a/arch/alpha/kernel/irq_pyxis.c +++ b/arch/alpha/kernel/irq_pyxis.c | |||
| @@ -70,7 +70,7 @@ pyxis_mask_and_ack_irq(unsigned int irq) | |||
| 70 | *(vulp)PYXIS_INT_MASK; | 70 | *(vulp)PYXIS_INT_MASK; |
| 71 | } | 71 | } |
| 72 | 72 | ||
| 73 | static struct hw_interrupt_type pyxis_irq_type = { | 73 | static struct irq_chip pyxis_irq_type = { |
| 74 | .typename = "PYXIS", | 74 | .typename = "PYXIS", |
| 75 | .startup = pyxis_startup_irq, | 75 | .startup = pyxis_startup_irq, |
| 76 | .shutdown = pyxis_disable_irq, | 76 | .shutdown = pyxis_disable_irq, |
diff --git a/arch/alpha/kernel/irq_srm.c b/arch/alpha/kernel/irq_srm.c index a03fbca4940e..85229369a1f8 100644 --- a/arch/alpha/kernel/irq_srm.c +++ b/arch/alpha/kernel/irq_srm.c | |||
| @@ -48,7 +48,7 @@ srm_end_irq(unsigned int irq) | |||
| 48 | } | 48 | } |
| 49 | 49 | ||
| 50 | /* Handle interrupts from the SRM, assuming no additional weirdness. */ | 50 | /* Handle interrupts from the SRM, assuming no additional weirdness. */ |
| 51 | static struct hw_interrupt_type srm_irq_type = { | 51 | static struct irq_chip srm_irq_type = { |
| 52 | .typename = "SRM", | 52 | .typename = "SRM", |
| 53 | .startup = srm_startup_irq, | 53 | .startup = srm_startup_irq, |
| 54 | .shutdown = srm_disable_irq, | 54 | .shutdown = srm_disable_irq, |
diff --git a/arch/alpha/kernel/sys_alcor.c b/arch/alpha/kernel/sys_alcor.c index e53a1e1c2f21..382035ef7394 100644 --- a/arch/alpha/kernel/sys_alcor.c +++ b/arch/alpha/kernel/sys_alcor.c | |||
| @@ -89,7 +89,7 @@ alcor_end_irq(unsigned int irq) | |||
| 89 | alcor_enable_irq(irq); | 89 | alcor_enable_irq(irq); |
| 90 | } | 90 | } |
| 91 | 91 | ||
| 92 | static struct hw_interrupt_type alcor_irq_type = { | 92 | static struct irq_chip alcor_irq_type = { |
| 93 | .typename = "ALCOR", | 93 | .typename = "ALCOR", |
| 94 | .startup = alcor_startup_irq, | 94 | .startup = alcor_startup_irq, |
| 95 | .shutdown = alcor_disable_irq, | 95 | .shutdown = alcor_disable_irq, |
diff --git a/arch/alpha/kernel/sys_cabriolet.c b/arch/alpha/kernel/sys_cabriolet.c index ace475c124f6..ed349436732b 100644 --- a/arch/alpha/kernel/sys_cabriolet.c +++ b/arch/alpha/kernel/sys_cabriolet.c | |||
| @@ -71,7 +71,7 @@ cabriolet_end_irq(unsigned int irq) | |||
| 71 | cabriolet_enable_irq(irq); | 71 | cabriolet_enable_irq(irq); |
| 72 | } | 72 | } |
| 73 | 73 | ||
| 74 | static struct hw_interrupt_type cabriolet_irq_type = { | 74 | static struct irq_chip cabriolet_irq_type = { |
| 75 | .typename = "CABRIOLET", | 75 | .typename = "CABRIOLET", |
| 76 | .startup = cabriolet_startup_irq, | 76 | .startup = cabriolet_startup_irq, |
| 77 | .shutdown = cabriolet_disable_irq, | 77 | .shutdown = cabriolet_disable_irq, |
diff --git a/arch/alpha/kernel/sys_dp264.c b/arch/alpha/kernel/sys_dp264.c index 5bd5259324b7..46e70ece5176 100644 --- a/arch/alpha/kernel/sys_dp264.c +++ b/arch/alpha/kernel/sys_dp264.c | |||
| @@ -198,7 +198,7 @@ clipper_set_affinity(unsigned int irq, const struct cpumask *affinity) | |||
| 198 | return 0; | 198 | return 0; |
| 199 | } | 199 | } |
| 200 | 200 | ||
| 201 | static struct hw_interrupt_type dp264_irq_type = { | 201 | static struct irq_chip dp264_irq_type = { |
| 202 | .typename = "DP264", | 202 | .typename = "DP264", |
| 203 | .startup = dp264_startup_irq, | 203 | .startup = dp264_startup_irq, |
| 204 | .shutdown = dp264_disable_irq, | 204 | .shutdown = dp264_disable_irq, |
| @@ -209,7 +209,7 @@ static struct hw_interrupt_type dp264_irq_type = { | |||
| 209 | .set_affinity = dp264_set_affinity, | 209 | .set_affinity = dp264_set_affinity, |
| 210 | }; | 210 | }; |
| 211 | 211 | ||
| 212 | static struct hw_interrupt_type clipper_irq_type = { | 212 | static struct irq_chip clipper_irq_type = { |
| 213 | .typename = "CLIPPER", | 213 | .typename = "CLIPPER", |
| 214 | .startup = clipper_startup_irq, | 214 | .startup = clipper_startup_irq, |
| 215 | .shutdown = clipper_disable_irq, | 215 | .shutdown = clipper_disable_irq, |
| @@ -298,7 +298,7 @@ clipper_srm_device_interrupt(unsigned long vector) | |||
| 298 | } | 298 | } |
| 299 | 299 | ||
| 300 | static void __init | 300 | static void __init |
| 301 | init_tsunami_irqs(struct hw_interrupt_type * ops, int imin, int imax) | 301 | init_tsunami_irqs(struct irq_chip * ops, int imin, int imax) |
| 302 | { | 302 | { |
| 303 | long i; | 303 | long i; |
| 304 | for (i = imin; i <= imax; ++i) { | 304 | for (i = imin; i <= imax; ++i) { |
diff --git a/arch/alpha/kernel/sys_eb64p.c b/arch/alpha/kernel/sys_eb64p.c index 9c5a306dc0ee..660c23ef661f 100644 --- a/arch/alpha/kernel/sys_eb64p.c +++ b/arch/alpha/kernel/sys_eb64p.c | |||
| @@ -69,7 +69,7 @@ eb64p_end_irq(unsigned int irq) | |||
| 69 | eb64p_enable_irq(irq); | 69 | eb64p_enable_irq(irq); |
| 70 | } | 70 | } |
| 71 | 71 | ||
| 72 | static struct hw_interrupt_type eb64p_irq_type = { | 72 | static struct irq_chip eb64p_irq_type = { |
| 73 | .typename = "EB64P", | 73 | .typename = "EB64P", |
| 74 | .startup = eb64p_startup_irq, | 74 | .startup = eb64p_startup_irq, |
| 75 | .shutdown = eb64p_disable_irq, | 75 | .shutdown = eb64p_disable_irq, |
diff --git a/arch/alpha/kernel/sys_eiger.c b/arch/alpha/kernel/sys_eiger.c index baf60f36cbd7..b99ea488d844 100644 --- a/arch/alpha/kernel/sys_eiger.c +++ b/arch/alpha/kernel/sys_eiger.c | |||
| @@ -80,7 +80,7 @@ eiger_end_irq(unsigned int irq) | |||
| 80 | eiger_enable_irq(irq); | 80 | eiger_enable_irq(irq); |
| 81 | } | 81 | } |
| 82 | 82 | ||
| 83 | static struct hw_interrupt_type eiger_irq_type = { | 83 | static struct irq_chip eiger_irq_type = { |
| 84 | .typename = "EIGER", | 84 | .typename = "EIGER", |
| 85 | .startup = eiger_startup_irq, | 85 | .startup = eiger_startup_irq, |
| 86 | .shutdown = eiger_disable_irq, | 86 | .shutdown = eiger_disable_irq, |
diff --git a/arch/alpha/kernel/sys_jensen.c b/arch/alpha/kernel/sys_jensen.c index 2b5caf3d9b15..ef0b83a070ac 100644 --- a/arch/alpha/kernel/sys_jensen.c +++ b/arch/alpha/kernel/sys_jensen.c | |||
| @@ -118,7 +118,7 @@ jensen_local_end(unsigned int irq) | |||
| 118 | i8259a_end_irq(1); | 118 | i8259a_end_irq(1); |
| 119 | } | 119 | } |
| 120 | |||
