Skip to content

Commit

Permalink
powerpc: Remove whitespace in irq chip name fields
Browse files Browse the repository at this point in the history
Now we use printf style alignment there is no need to manually space
these fields.

Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
  • Loading branch information
Anton Blanchard authored and Benjamin Herrenschmidt committed Feb 17, 2010
1 parent c86845e commit fc380c0
Show file tree
Hide file tree
Showing 17 changed files with 20 additions and 20 deletions.
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 = {
.name = " 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/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 = {
.name = " 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/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 = {
.name = " 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 = {
.name = " 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 = {
.name = " 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 = {
.name = " 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 = {
.name = "iSeries irq controller",
.name = "iSeries",
.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 = {
.name = " PMAC-PIC ",
.name = "PMAC-PIC",
.startup = pmac_startup_irq,
.mask = pmac_mask_irq,
.ack = pmac_ack_irq,
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 @@ -424,7 +424,7 @@ static int xics_set_affinity(unsigned int virq, const struct cpumask *cpumask)
}

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

static struct irq_chip xics_pic_lpar = {
.name = " 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 = {
.name = " 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 @@ -198,7 +198,7 @@ static int cpm2_set_irq_type(unsigned int virq, unsigned int flow_type)
}

static struct irq_chip cpm2_pic = {
.name = " 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,
.name = " 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 = {
.name = " 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 = {
.name = " 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 = {
.name = " 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 = {
.name = " MPC8XX SIU ",
.name = "MPC8XX SIU",
.unmask = mpc8xx_unmask_irq,
.mask = mpc8xx_mask_irq,
.ack = mpc8xx_ack,
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,
.name = "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/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 = {
.name = " 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/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 = {
.name = " UIC ",
.name = "UIC",
.unmask = uic_unmask_irq,
.mask = uic_mask_irq,
.mask_ack = uic_mask_ack_irq,
Expand Down

0 comments on commit fc380c0

Please sign in to comment.