Skip to content

Commit

Permalink
powerpc: Fixup last users of irq_chip->typename
Browse files Browse the repository at this point in the history
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>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: linuxppc-dev@ozlabs.org
Acked-by: Geoff Levand <geoffrey.levand@am.sony.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
  • Loading branch information
Thomas Gleixner authored and Benjamin Herrenschmidt committed Nov 24, 2009
1 parent 293cfa4 commit b27df67
Show file tree
Hide file tree
Showing 29 changed files with 39 additions and 40 deletions.
6 changes: 3 additions & 3 deletions arch/powerpc/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ int show_interrupts(struct seq_file *p, void *v)
#endif /* CONFIG_SMP */

if (desc->chip)
seq_printf(p, " %s ", desc->chip->typename);
seq_printf(p, " %s ", desc->chip->name);
else
seq_puts(p, " None ");

Expand Down Expand Up @@ -1112,8 +1112,8 @@ static int virq_debug_show(struct seq_file *m, void *private)
seq_printf(m, "%5d ", i);
seq_printf(m, "0x%05lx ", virq_to_hw(i));

if (desc->chip && desc->chip->typename)
p = desc->chip->typename;
if (desc->chip && desc->chip->name)
p = desc->chip->name;
else
p = none;
seq_printf(m, "%-15s ", p);
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/512x/mpc5121_ads_cpld.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ cpld_unmask_irq(unsigned int irq)
}

static struct irq_chip cpld_pic = {
.typename = " CPLD PIC ",
.name = " CPLD PIC ",
.mask = cpld_mask_irq,
.ack = cpld_mask_irq,
.unmask = cpld_unmask_irq,
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/52xx/media5200.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ static void media5200_irq_mask(unsigned int virq)
}

static struct irq_chip media5200_irq_chip = {
.typename = "Media5200 FPGA",
.name = "Media5200 FPGA",
.unmask = media5200_irq_unmask,
.mask = media5200_irq_mask,
.mask_ack = media5200_irq_mask,
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/52xx/mpc52xx_gpt.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ static int mpc52xx_gpt_irq_set_type(unsigned int virq, unsigned int flow_type)
}

static struct irq_chip mpc52xx_gpt_irq_chip = {
.typename = "MPC52xx GPT",
.name = "MPC52xx GPT",
.unmask = mpc52xx_gpt_irq_unmask,
.mask = mpc52xx_gpt_irq_mask,
.ack = mpc52xx_gpt_irq_ack,
Expand Down
8 changes: 4 additions & 4 deletions arch/powerpc/platforms/52xx/mpc52xx_pic.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ static int mpc52xx_extirq_set_type(unsigned int virq, unsigned int flow_type)
}

static struct irq_chip mpc52xx_extirq_irqchip = {
.typename = "MPC52xx External",
.name = "MPC52xx External",
.mask = mpc52xx_extirq_mask,
.unmask = mpc52xx_extirq_unmask,
.ack = mpc52xx_extirq_ack,
Expand Down Expand Up @@ -258,7 +258,7 @@ static void mpc52xx_main_unmask(unsigned int virq)
}

static struct irq_chip mpc52xx_main_irqchip = {
.typename = "MPC52xx Main",
.name = "MPC52xx Main",
.mask = mpc52xx_main_mask,
.mask_ack = mpc52xx_main_mask,
.unmask = mpc52xx_main_unmask,
Expand Down Expand Up @@ -291,7 +291,7 @@ static void mpc52xx_periph_unmask(unsigned int virq)
}

static struct irq_chip mpc52xx_periph_irqchip = {
.typename = "MPC52xx Peripherals",
.name = "MPC52xx Peripherals",
.mask = mpc52xx_periph_mask,
.mask_ack = mpc52xx_periph_mask,
.unmask = mpc52xx_periph_unmask,
Expand Down Expand Up @@ -335,7 +335,7 @@ static void mpc52xx_sdma_ack(unsigned int virq)
}

static struct irq_chip mpc52xx_sdma_irqchip = {
.typename = "MPC52xx SDMA",
.name = "MPC52xx SDMA",
.mask = mpc52xx_sdma_mask,
.unmask = mpc52xx_sdma_unmask,
.ack = mpc52xx_sdma_ack,
Expand Down
1 change: 0 additions & 1 deletion arch/powerpc/platforms/82xx/pq2ads-pci-pic.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ static void pq2ads_pci_unmask_irq(unsigned int virq)
}

static struct irq_chip pq2ads_pci_ic = {
.typename = "PQ2 ADS PCI",
.name = "PQ2 ADS PCI",
.end = pq2ads_pci_unmask_irq,
.mask = pq2ads_pci_mask_irq,
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/85xx/socrates_fpga_pic.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ static int socrates_fpga_pic_set_type(unsigned int virq,
}

static struct irq_chip socrates_fpga_pic_chip = {
.typename = " FPGA-PIC ",
.name = " FPGA-PIC ",
.ack = socrates_fpga_pic_ack,
.mask = socrates_fpga_pic_mask,
.mask_ack = socrates_fpga_pic_mask_ack,
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/86xx/gef_pic.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ static void gef_pic_unmask(unsigned int virq)
}

static struct irq_chip gef_pic_chip = {
.typename = "gefp",
.name = "gefp",
.mask = gef_pic_mask,
.mask_ack = gef_pic_mask_ack,
.unmask = gef_pic_unmask,
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/cell/axon_msi.c
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ static struct irq_chip msic_irq_chip = {
.mask = mask_msi_irq,
.unmask = unmask_msi_irq,
.shutdown = unmask_msi_irq,
.typename = "AXON-MSI",
.name = "AXON-MSI",
};

static int msic_host_map(struct irq_host *h, unsigned int virq,
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/cell/beat_interrupt.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ static void beatic_end_irq(unsigned int irq_plug)
}

static struct irq_chip beatic_pic = {
.typename = " CELL-BEAT ",
.name = " CELL-BEAT ",
.unmask = beatic_unmask_irq,
.mask = beatic_mask_irq,
.eoi = beatic_end_irq,
Expand Down
4 changes: 2 additions & 2 deletions arch/powerpc/platforms/cell/interrupt.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ static void iic_eoi(unsigned int irq)
}

static struct irq_chip iic_chip = {
.typename = " CELL-IIC ",
.name = " CELL-IIC ",
.mask = iic_mask,
.unmask = iic_unmask,
.eoi = iic_eoi,
Expand Down Expand Up @@ -133,7 +133,7 @@ static void iic_ioexc_cascade(unsigned int irq, struct irq_desc *desc)


static struct irq_chip iic_ioexc_chip = {
.typename = " CELL-IOEX",
.name = " CELL-IOEX",
.mask = iic_mask,
.unmask = iic_unmask,
.eoi = iic_ioexc_eoi,
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/cell/spider-pic.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ static int spider_set_irq_type(unsigned int virq, unsigned int type)
}

static struct irq_chip spider_pic = {
.typename = " SPIDER ",
.name = " SPIDER ",
.unmask = spider_unmask_irq,
.mask = spider_mask_irq,
.ack = spider_ack_irq,
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/iseries/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ static void iseries_end_IRQ(unsigned int irq)
}

static struct irq_chip iseries_pic = {
.typename = "iSeries irq controller",
.name = "iSeries irq controller",
.startup = iseries_startup_IRQ,
.shutdown = iseries_shutdown_IRQ,
.unmask = iseries_enable_IRQ,
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/powermac/pic.c
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ static int pmac_retrigger(unsigned int virq)
}

static struct irq_chip pmac_pic = {
.typename = " PMAC-PIC ",
.name = " PMAC-PIC ",
.startup = pmac_startup_irq,
.mask = pmac_mask_irq,
.ack = pmac_ack_irq,
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/ps3/interrupt.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ static void ps3_chip_eoi(unsigned int virq)
*/

static struct irq_chip ps3_irq_chip = {
.typename = "ps3",
.name = "ps3",
.mask = ps3_chip_mask,
.unmask = ps3_chip_unmask,
.eoi = ps3_chip_eoi,
Expand Down
4 changes: 2 additions & 2 deletions arch/powerpc/platforms/pseries/xics.c
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ static int xics_set_affinity(unsigned int virq, const struct cpumask *cpumask)
}

static struct irq_chip xics_pic_direct = {
.typename = " XICS ",
.name = " XICS ",
.startup = xics_startup,
.mask = xics_mask_irq,
.unmask = xics_unmask_irq,
Expand All @@ -397,7 +397,7 @@ static struct irq_chip xics_pic_direct = {
};

static struct irq_chip xics_pic_lpar = {
.typename = " XICS ",
.name = " XICS ",
.startup = xics_startup,
.mask = xics_mask_irq,
.unmask = xics_unmask_irq,
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/sysdev/cpm1.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ static void cpm_end_irq(unsigned int irq)
}

static struct irq_chip cpm_pic = {
.typename = " CPM PIC ",
.name = " CPM PIC ",
.mask = cpm_mask_irq,
.unmask = cpm_unmask_irq,
.eoi = cpm_end_irq,
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/sysdev/cpm2_pic.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ static int cpm2_set_irq_type(unsigned int virq, unsigned int flow_type)
}

static struct irq_chip cpm2_pic = {
.typename = " CPM2 SIU ",
.name = " CPM2 SIU ",
.mask = cpm2_mask_irq,
.unmask = cpm2_unmask_irq,
.ack = cpm2_ack,
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/sysdev/fsl_msi.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static struct irq_chip fsl_msi_chip = {
.mask = mask_msi_irq,
.unmask = unmask_msi_irq,
.ack = fsl_msi_end_irq,
.typename = " FSL-MSI ",
.name = " FSL-MSI ",
};

static int fsl_msi_host_map(struct irq_host *h, unsigned int virq,
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/sysdev/i8259.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ static void i8259_unmask_irq(unsigned int irq_nr)
}

static struct irq_chip i8259_pic = {
.typename = " i8259 ",
.name = " i8259 ",
.mask = i8259_mask_irq,
.disable = i8259_mask_irq,
.unmask = i8259_unmask_irq,
Expand Down
4 changes: 2 additions & 2 deletions arch/powerpc/sysdev/ipic.c
Original file line number Diff line number Diff line change
Expand Up @@ -660,15 +660,15 @@ static int ipic_set_irq_type(unsigned int virq, unsigned int flow_type)

/* level interrupts and edge interrupts have different ack operations */
static struct irq_chip ipic_level_irq_chip = {
.typename = " IPIC ",
.name = " IPIC ",
.unmask = ipic_unmask_irq,
.mask = ipic_mask_irq,
.mask_ack = ipic_mask_irq,
.set_type = ipic_set_irq_type,
};

static struct irq_chip ipic_edge_irq_chip = {
.typename = " IPIC ",
.name = " IPIC ",
.unmask = ipic_unmask_irq,
.mask = ipic_mask_irq,
.mask_ack = ipic_mask_irq_and_ack,
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/sysdev/mpc8xx_pic.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ static int mpc8xx_set_irq_type(unsigned int virq, unsigned int flow_type)
}

static struct irq_chip mpc8xx_pic = {
.typename = " MPC8XX SIU ",
.name = " MPC8XX SIU ",
.unmask = mpc8xx_unmask_irq,
.mask = mpc8xx_mask_irq,
.ack = mpc8xx_ack,
Expand Down
6 changes: 3 additions & 3 deletions arch/powerpc/sysdev/mpic.c
Original file line number Diff line number Diff line change
Expand Up @@ -1062,19 +1062,19 @@ struct mpic * __init mpic_alloc(struct device_node *node,
mpic->name = name;

mpic->hc_irq = mpic_irq_chip;
mpic->hc_irq.typename = name;
mpic->hc_irq.name = name;
if (flags & MPIC_PRIMARY)
mpic->hc_irq.set_affinity = mpic_set_affinity;
#ifdef CONFIG_MPIC_U3_HT_IRQS
mpic->hc_ht_irq = mpic_irq_ht_chip;
mpic->hc_ht_irq.typename = name;
mpic->hc_ht_irq.name = name;
if (flags & MPIC_PRIMARY)
mpic->hc_ht_irq.set_affinity = mpic_set_affinity;
#endif /* CONFIG_MPIC_U3_HT_IRQS */

#ifdef CONFIG_SMP
mpic->hc_ipi = mpic_ipi_chip;
mpic->hc_ipi.typename = name;
mpic->hc_ipi.name = name;
#endif /* CONFIG_SMP */

mpic->flags = flags;
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/sysdev/mpic_pasemi_msi.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ static struct irq_chip mpic_pasemi_msi_chip = {
.eoi = mpic_end_irq,
.set_type = mpic_set_irq_type,
.set_affinity = mpic_set_affinity,
.typename = "PASEMI-MSI ",
.name = "PASEMI-MSI ",
};

static int pasemi_msi_check_device(struct pci_dev *pdev, int nvec, int type)
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/sysdev/mpic_u3msi.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ static struct irq_chip mpic_u3msi_chip = {
.eoi = mpic_end_irq,
.set_type = mpic_set_irq_type,
.set_affinity = mpic_set_affinity,
.typename = "MPIC-U3MSI",
.name = "MPIC-U3MSI",
};

static u64 read_ht_magic_addr(struct pci_dev *pdev, unsigned int pos)
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/sysdev/qe_lib/qe_ic.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ static void qe_ic_mask_irq(unsigned int virq)
}

static struct irq_chip qe_ic_irq_chip = {
.typename = " QEIC ",
.name = " QEIC ",
.unmask = qe_ic_unmask_irq,
.mask = qe_ic_mask_irq,
.mask_ack = qe_ic_mask_irq,
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/sysdev/tsi108_pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ static void tsi108_pci_irq_end(u_int irq)
*/

static struct irq_chip tsi108_pci_irq = {
.typename = "tsi108_PCI_int",
.name = "tsi108_PCI_int",
.mask = tsi108_pci_irq_disable,
.ack = tsi108_pci_irq_ack,
.end = tsi108_pci_irq_end,
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/sysdev/uic.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ static int uic_set_irq_type(unsigned int virq, unsigned int flow_type)
}

static struct irq_chip uic_irq_chip = {
.typename = " UIC ",
.name = " UIC ",
.unmask = uic_unmask_irq,
.mask = uic_mask_irq,
.mask_ack = uic_mask_ack_irq,
Expand Down
4 changes: 2 additions & 2 deletions arch/powerpc/sysdev/xilinx_intc.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ static void xilinx_intc_level_unmask(unsigned int virq)
}

static struct irq_chip xilinx_intc_level_irqchip = {
.typename = "Xilinx Level INTC",
.name = "Xilinx Level INTC",
.mask = xilinx_intc_mask,
.mask_ack = xilinx_intc_mask,
.unmask = xilinx_intc_level_unmask,
Expand All @@ -133,7 +133,7 @@ static void xilinx_intc_edge_ack(unsigned int virq)
}

static struct irq_chip xilinx_intc_edge_irqchip = {
.typename = "Xilinx Edge INTC",
.name = "Xilinx Edge INTC",
.mask = xilinx_intc_mask,
.unmask = xilinx_intc_edge_unmask,
.ack = xilinx_intc_edge_ack,
Expand Down

0 comments on commit b27df67

Please sign in to comment.