Author: jogo Date: 2015-11-04 12:33:16 +0100 (Wed, 04 Nov 2015) New Revision: 47379
Modified: trunk/target/linux/brcm63xx/patches-3.18/321-irqchip-add-support-for-bcm6345-style-external-inter.patch trunk/target/linux/brcm63xx/patches-4.1/321-irqchip-add-support-for-bcm6345-style-external-inter.patch Log: brcm63xx: fix brcm, bcm6345-ext-intc interrupt controller brcm,field-width is read but unused Signed-off-by: ?\195?\129lvaro Fern?\195?\161ndez Rojas <[email protected]> Signed-off-by: Jonas Gorski <[email protected]> Modified: trunk/target/linux/brcm63xx/patches-3.18/321-irqchip-add-support-for-bcm6345-style-external-inter.patch =================================================================== --- trunk/target/linux/brcm63xx/patches-3.18/321-irqchip-add-support-for-bcm6345-style-external-inter.patch 2015-11-04 11:33:10 UTC (rev 47378) +++ trunk/target/linux/brcm63xx/patches-3.18/321-irqchip-add-support-for-bcm6345-style-external-inter.patch 2015-11-04 11:33:16 UTC (rev 47379) @@ -23,7 +23,7 @@ + +Required properties: + -+- compatible: Should be "brcm,bcm6345-l2-intc". ++- compatible: Should be "brcm,bcm6345-ext-intc". +- reg: Specifies the base physical addresses and size of the registers. +- interrupt-controller: identifies the node as an interrupt controller. +- #interrupt-cells: Specifies the number of cells needed to encode an interrupt @@ -41,7 +41,7 @@ +Example: + +ext_intc: interrupt-controller@10000018 { -+ compatible = "brcm,bcm6345-l2-intc"; ++ compatible = "brcm,bcm6345-ext-intc"; + interrupt-parent = <&periph_intc>; + #interrupt-cells = <2>; + reg = <0x10000018 0x4>; @@ -73,7 +73,7 @@ obj-$(CONFIG_METAG) += irq-metag-ext.o --- /dev/null +++ b/drivers/irqchip/irq-bcm6345-ext.c -@@ -0,0 +1,287 @@ +@@ -0,0 +1,288 @@ +/* + * This file is subject to the terms and conditions of the GNU General Public + * License. See the file "COPYING" in the main directory of this archive @@ -283,6 +283,7 @@ + } + + data->reg = reg; ++ data->shift = shift; + + data->chip.name = "bcm6345-ext-intc"; + data->chip.irq_ack = bcm6345_ext_intc_irq_ack; Modified: trunk/target/linux/brcm63xx/patches-4.1/321-irqchip-add-support-for-bcm6345-style-external-inter.patch =================================================================== --- trunk/target/linux/brcm63xx/patches-4.1/321-irqchip-add-support-for-bcm6345-style-external-inter.patch 2015-11-04 11:33:10 UTC (rev 47378) +++ trunk/target/linux/brcm63xx/patches-4.1/321-irqchip-add-support-for-bcm6345-style-external-inter.patch 2015-11-04 11:33:16 UTC (rev 47379) @@ -23,7 +23,7 @@ + +Required properties: + -+- compatible: Should be "brcm,bcm6345-l2-intc". ++- compatible: Should be "brcm,bcm6345-ext-intc". +- reg: Specifies the base physical addresses and size of the registers. +- interrupt-controller: identifies the node as an interrupt controller. +- #interrupt-cells: Specifies the number of cells needed to encode an interrupt @@ -41,7 +41,7 @@ +Example: + +ext_intc: interrupt-controller@10000018 { -+ compatible = "brcm,bcm6345-l2-intc"; ++ compatible = "brcm,bcm6345-ext-intc"; + interrupt-parent = <&periph_intc>; + #interrupt-cells = <2>; + reg = <0x10000018 0x4>; @@ -73,7 +73,7 @@ obj-$(CONFIG_METAG) += irq-metag-ext.o --- /dev/null +++ b/drivers/irqchip/irq-bcm6345-ext.c -@@ -0,0 +1,287 @@ +@@ -0,0 +1,288 @@ +/* + * This file is subject to the terms and conditions of the GNU General Public + * License. See the file "COPYING" in the main directory of this archive @@ -283,6 +283,7 @@ + } + + data->reg = reg; ++ data->shift = shift; + + data->chip.name = "bcm6345-ext-intc"; + data->chip.irq_ack = bcm6345_ext_intc_irq_ack; _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
