Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

irqchip: clps711x: Changing the compatibility string to match with the smallest supported chip

This patch changes the compatibility string to match with the smallest
supported chip (EP7209). Since the DT-support for this CPU is not yet
announced, this change is safe.

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

authored by

Alexander Shiyan and committed by
Arnd Bergmann
4b4d9949 d64c0105

+3 -3
+2 -2
Documentation/devicetree/bindings/interrupt-controller/cirrus,clps711x-intc.txt
··· 2 2 3 3 Required properties: 4 4 5 - - compatible: Should be "cirrus,clps711x-intc". 5 + - compatible: Should be "cirrus,ep7209-intc". 6 6 - reg: Specifies base physical address of the registers set. 7 7 - interrupt-controller: Identifies the node as an interrupt controller. 8 8 - #interrupt-cells: Specifies the number of cells needed to encode an ··· 34 34 35 35 Example: 36 36 intc: interrupt-controller { 37 - compatible = "cirrus,clps711x-intc"; 37 + compatible = "cirrus,ep7312-intc", "cirrus,ep7209-intc"; 38 38 reg = <0x80000000 0x4000>; 39 39 interrupt-controller; 40 40 #interrupt-cells = <1>;
+1 -1
drivers/irqchip/irq-clps711x.c
··· 234 234 235 235 return _clps711x_intc_init(np, res.start, resource_size(&res)); 236 236 } 237 - IRQCHIP_DECLARE(clps711x, "cirrus,clps711x-intc", clps711x_intc_init_dt); 237 + IRQCHIP_DECLARE(clps711x, "cirrus,ep7209-intc", clps711x_intc_init_dt); 238 238 #endif