Commit d0608b54740c82b08056b7611e38a3fd73be3564

Authored by Thomas Gleixner
Committed by Kyle McMartin
1 parent 217bfb5190

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

arch/parisc/kernel/irq.c
... ... @@ -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  
drivers/parisc/dino.c
... ... @@ -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,
drivers/parisc/eisa.c
... ... @@ -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,
drivers/parisc/gsc.c
... ... @@ -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,
drivers/parisc/iosapic.c
... ... @@ -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,
drivers/parisc/superio.c
... ... @@ -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,