Commit
d0608b54740c82b08056b7611e38a3fd73be3564
Exists in
master
and in
39 other branches
8mp-imx_5.4.70_2.3.0, 8qm-imx_5.4.70_2.3.0, emb_imx_lf-5.15.y, emb_lf-6.1.y, imx_3.0.35_4.1.0, imx_3.10.17_1.0.1_ga, imx_3.10.53_1.1.0_ga, imx_3.14.28_1.0.0_ga, imx_4.1.15_1.0.0_ga, pitx_8mp_lf-5.10.y, rt-smarc-imx_4.1.15_1.0.0_ga, rt_linux_5.15.71, smarc-8m-android-11.0.0_2.0.0, smarc-imx6_4.14.98_2.0.0_ga, smarc-imx6_4.9.88_2.0.0_ga, smarc-imx7_4.14.98_2.0.0_ga, smarc-imx7_4.9.11_1.0.0_ga, smarc-imx7_4.9.88_2.0.0_ga, smarc-imx_3.10.53_1.1.0_ga, smarc-imx_3.14.28_1.0.0_ga, smarc-imx_4.1.15_1.0.0_ga, smarc-imx_4.9.11_1.0.0_ga, smarc-imx_4.9.51_imx8m_ga, smarc-imx_4.9.88_2.0.0_ga, smarc-m6.0.1_2.1.0-ga, smarc-n7.1.2_2.0.0-ga, smarc-rel_imx_4.1.15_1.2.0_ga, smarc_8m_00d0_imx_4.14.98_2.0.0_ga, smarc_8m_imx_4.14.78_1.0.0_ga, smarc_8m_imx_4.14.98_2.0.0_ga, smarc_8m_imx_4.19.35_1.1.0, smarc_8mm_imx_4.14.78_1.0.0_ga, smarc_8mm_imx_4.14.98_2.0.0_ga, smarc_8mm_imx_4.19.35_1.1.0, smarc_8mm_imx_5.4.24_2.1.0, smarc_8mp_lf-5.10.y, smarc_8mq_imx_5.4.24_2.1.0, smarc_8mq_lf-5.10.y, smarc_imx_lf-5.15.y
parisc: Fixup last users of irq_chip->typename
The typename member of struct irq_chip was kept for migration purposes
and is obsolete since more than 2 years. Fix up the leftovers.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Showing
6 changed files
with
7 additions
and
7 deletions
Side-by-side Diff
... |
... |
@@ -145,7 +145,7 @@ |
145
|
145 |
#endif |
146
|
146 |
|
147
|
147 |
static struct irq_chip cpu_interrupt_type = { |
148
|
|
- .typename = "CPU", |
|
148 |
+ .name = "CPU", |
149
|
149 |
.startup = cpu_startup_irq, |
150
|
150 |
.shutdown = cpu_disable_irq, |
151
|
151 |
.enable = cpu_enable_irq, |
... |
... |
@@ -192,7 +192,7 @@ |
192
|
192 |
seq_printf(p, "%10u ", kstat_irqs(i)); |
193
|
193 |
#endif |
194
|
194 |
|
195
|
|
- seq_printf(p, " %14s", irq_desc[i].chip->typename); |
|
195 |
+ seq_printf(p, " %14s", irq_desc[i].chip->name); |
196
|
196 |
#ifndef PARISC_IRQ_CR16_COUNTS |
197
|
197 |
seq_printf(p, " %s", action->name); |
198
|
198 |
|
... |
... |
@@ -354,7 +354,7 @@ |
354
|
354 |
} |
355
|
355 |
|
356
|
356 |
static struct irq_chip dino_interrupt_type = { |
357
|
|
- .typename = "GSC-PCI", |
|
357 |
+ .name = "GSC-PCI", |
358
|
358 |
.startup = dino_startup_irq, |
359
|
359 |
.shutdown = dino_disable_irq, |
360
|
360 |
.enable = dino_enable_irq, |
... |
... |
@@ -189,7 +189,7 @@ |
189
|
189 |
} |
190
|
190 |
|
191
|
191 |
static struct irq_chip eisa_interrupt_type = { |
192
|
|
- .typename = "EISA", |
|
192 |
+ .name = "EISA", |
193
|
193 |
.startup = eisa_startup_irq, |
194
|
194 |
.shutdown = eisa_disable_irq, |
195
|
195 |
.enable = eisa_enable_irq, |
... |
... |
@@ -149,7 +149,7 @@ |
149
|
149 |
} |
150
|
150 |
|
151
|
151 |
static struct irq_chip gsc_asic_interrupt_type = { |
152
|
|
- .typename = "GSC-ASIC", |
|
152 |
+ .name = "GSC-ASIC", |
153
|
153 |
.startup = gsc_asic_startup_irq, |
154
|
154 |
.shutdown = gsc_asic_disable_irq, |
155
|
155 |
.enable = gsc_asic_enable_irq, |
... |
... |
@@ -730,7 +730,7 @@ |
730
|
730 |
#endif |
731
|
731 |
|
732
|
732 |
static struct irq_chip iosapic_interrupt_type = { |
733
|
|
- .typename = "IO-SAPIC-level", |
|
733 |
+ .name = "IO-SAPIC-level", |
734
|
734 |
.startup = iosapic_startup_irq, |
735
|
735 |
.shutdown = iosapic_disable_irq, |
736
|
736 |
.enable = iosapic_enable_irq, |
... |
... |
@@ -326,7 +326,7 @@ |
326
|
326 |
} |
327
|
327 |
|
328
|
328 |
static struct irq_chip superio_interrupt_type = { |
329
|
|
- .typename = SUPERIO, |
|
329 |
+ .name = SUPERIO, |
330
|
330 |
.startup = superio_startup_irq, |
331
|
331 |
.shutdown = superio_disable_irq, |
332
|
332 |
.enable = superio_enable_irq, |