diff mbox

irqchip: gic: Add support for cortex a7 compatible string

Message ID 1404388732-28890-1-git-send-email-matthias.bgg@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Matthias Brugger July 3, 2014, 11:58 a.m. UTC
Patch 0a68214b "ARM: DT: Add binding for GIC virtualization extentions (VGIC)" added
the "arm,cortex-a7-gic" compatible string, but the corresponding IRQCHIP_DECLARE
was never added to the gic driver.

To let real Cortex-A7 SoCs use it, add the necessary declaration to the device driver.

Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com>
---
 drivers/irqchip/irq-gic.c |    1 +
 1 file changed, 1 insertion(+)

Comments

Jason Cooper July 8, 2014, 10:56 p.m. UTC | #1
On Thu, Jul 03, 2014 at 01:58:52PM +0200, Matthias Brugger wrote:
> Patch 0a68214b "ARM: DT: Add binding for GIC virtualization extentions (VGIC)" added
> the "arm,cortex-a7-gic" compatible string, but the corresponding IRQCHIP_DECLARE
> was never added to the gic driver.
> 
> To let real Cortex-A7 SoCs use it, add the necessary declaration to the device driver.
> 
> Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com>
> ---
>  drivers/irqchip/irq-gic.c |    1 +
>  1 file changed, 1 insertion(+)

Applied to irqchip/urgent and Cc'd to stable for v3.5+

thx,

Jason.
diff mbox

Patch

diff --git a/drivers/irqchip/irq-gic.c b/drivers/irqchip/irq-gic.c
index c305983..3b66369 100644
--- a/drivers/irqchip/irq-gic.c
+++ b/drivers/irqchip/irq-gic.c
@@ -1071,6 +1071,7 @@  gic_of_init(struct device_node *node, struct device_node *parent)
 }
 IRQCHIP_DECLARE(cortex_a15_gic, "arm,cortex-a15-gic", gic_of_init);
 IRQCHIP_DECLARE(cortex_a9_gic, "arm,cortex-a9-gic", gic_of_init);
+IRQCHIP_DECLARE(cortex_a7_gic, "arm,cortex-a7-gic", gic_of_init);
 IRQCHIP_DECLARE(msm_8660_qgic, "qcom,msm-8660-qgic", gic_of_init);
 IRQCHIP_DECLARE(msm_qgic2, "qcom,msm-qgic2", gic_of_init);