diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-02-10 09:46:59 -0500 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2016-02-16 12:36:16 -0500 |
commit | f692a172deb5cda8874a44782401901597c526a2 (patch) | |
tree | 1eae418139f49826b03d30b3c3628ea2d20443c6 | |
parent | 0636bab67fa4df68c85b28ba345596a72986fa9e (diff) |
irqchip/armada-370-xp: Use shorter names for irq_chip
In order to make the output of /proc/interrupts, use shorter names for
the irq_chip registered by the irq-armada-370-xp driver. Using capital
letters also matches better what is done for the GIC driver, which
uses just "GIC" as the irq_chip->name.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Link: https://lkml.kernel.org/r/1455115621-22846-5-git-send-email-thomas.petazzoni@free-electrons.com
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
-rw-r--r-- | drivers/irqchip/irq-armada-370-xp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/irqchip/irq-armada-370-xp.c b/drivers/irqchip/irq-armada-370-xp.c index f53eb716eccb..c99ae5fc5500 100644 --- a/drivers/irqchip/irq-armada-370-xp.c +++ b/drivers/irqchip/irq-armada-370-xp.c | |||
@@ -117,7 +117,7 @@ static void armada_370_xp_irq_unmask(struct irq_data *d) | |||
117 | #ifdef CONFIG_PCI_MSI | 117 | #ifdef CONFIG_PCI_MSI |
118 | 118 | ||
119 | static struct irq_chip armada_370_xp_msi_irq_chip = { | 119 | static struct irq_chip armada_370_xp_msi_irq_chip = { |
120 | .name = "armada_370_xp_msi_irq", | 120 | .name = "MPIC MSI", |
121 | .irq_mask = pci_msi_mask_irq, | 121 | .irq_mask = pci_msi_mask_irq, |
122 | .irq_unmask = pci_msi_unmask_irq, | 122 | .irq_unmask = pci_msi_unmask_irq, |
123 | }; | 123 | }; |
@@ -141,7 +141,7 @@ static int armada_370_xp_msi_set_affinity(struct irq_data *irq_data, | |||
141 | } | 141 | } |
142 | 142 | ||
143 | static struct irq_chip armada_370_xp_msi_bottom_irq_chip = { | 143 | static struct irq_chip armada_370_xp_msi_bottom_irq_chip = { |
144 | .name = "armada_370_xp_msi_irq", | 144 | .name = "MPIC MSI", |
145 | .irq_compose_msi_msg = armada_370_xp_compose_msi_msg, | 145 | .irq_compose_msi_msg = armada_370_xp_compose_msi_msg, |
146 | .irq_set_affinity = armada_370_xp_msi_set_affinity, | 146 | .irq_set_affinity = armada_370_xp_msi_set_affinity, |
147 | }; | 147 | }; |
@@ -253,7 +253,7 @@ static int armada_xp_set_affinity(struct irq_data *d, | |||
253 | #endif | 253 | #endif |
254 | 254 | ||
255 | static struct irq_chip armada_370_xp_irq_chip = { | 255 | static struct irq_chip armada_370_xp_irq_chip = { |
256 | .name = "armada_370_xp_irq", | 256 | .name = "MPIC", |
257 | .irq_mask = armada_370_xp_irq_mask, | 257 | .irq_mask = armada_370_xp_irq_mask, |
258 | .irq_mask_ack = armada_370_xp_irq_mask, | 258 | .irq_mask_ack = armada_370_xp_irq_mask, |
259 | .irq_unmask = armada_370_xp_irq_unmask, | 259 | .irq_unmask = armada_370_xp_irq_unmask, |