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>
This commit is contained in:
parent
d64c01058c
commit
4b4d994958
2 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@ Cirrus Logic CLPS711X Interrupt Controller
|
||||||
|
|
||||||
Required properties:
|
Required properties:
|
||||||
|
|
||||||
- compatible: Should be "cirrus,clps711x-intc".
|
- compatible: Should be "cirrus,ep7209-intc".
|
||||||
- reg: Specifies base physical address of the registers set.
|
- reg: Specifies base physical address of the registers set.
|
||||||
- interrupt-controller: Identifies the node as an interrupt controller.
|
- interrupt-controller: Identifies the node as an interrupt controller.
|
||||||
- #interrupt-cells: Specifies the number of cells needed to encode an
|
- #interrupt-cells: Specifies the number of cells needed to encode an
|
||||||
|
@ -34,7 +34,7 @@ ID Name Description
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
intc: interrupt-controller {
|
intc: interrupt-controller {
|
||||||
compatible = "cirrus,clps711x-intc";
|
compatible = "cirrus,ep7312-intc", "cirrus,ep7209-intc";
|
||||||
reg = <0x80000000 0x4000>;
|
reg = <0x80000000 0x4000>;
|
||||||
interrupt-controller;
|
interrupt-controller;
|
||||||
#interrupt-cells = <1>;
|
#interrupt-cells = <1>;
|
||||||
|
|
|
@ -234,5 +234,5 @@ static int __init clps711x_intc_init_dt(struct device_node *np,
|
||||||
|
|
||||||
return _clps711x_intc_init(np, res.start, resource_size(&res));
|
return _clps711x_intc_init(np, res.start, resource_size(&res));
|
||||||
}
|
}
|
||||||
IRQCHIP_DECLARE(clps711x, "cirrus,clps711x-intc", clps711x_intc_init_dt);
|
IRQCHIP_DECLARE(clps711x, "cirrus,ep7209-intc", clps711x_intc_init_dt);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue