mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-24 23:31:44 +02:00
watchdog: sp805_wdt: use correct compatible string
According to the linux device tree specification the compatible string is: compatible = "arm,sp805", "arm,primecell"; Fix all users in u-boot. Signed-off-by: Michael Walle <michael@walle.cc> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
This commit is contained in:
parent
c816dd0324
commit
5709a858c0
@ -382,7 +382,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
cluster1_core0_watchdog: wdt@c000000 {
|
cluster1_core0_watchdog: wdt@c000000 {
|
||||||
compatible = "arm,sp805-wdt";
|
compatible = "arm,sp805", "arm,primecell";
|
||||||
reg = <0x0 0xc000000 0x0 0x1000>;
|
reg = <0x0 0xc000000 0x0 0x1000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1087,7 +1087,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
watchdog0: watchdog@e8a06000 {
|
watchdog0: watchdog@e8a06000 {
|
||||||
compatible = "arm,sp805-wdt", "arm,primecell";
|
compatible = "arm,sp805", "arm,primecell";
|
||||||
reg = <0x0 0xe8a06000 0x0 0x1000>;
|
reg = <0x0 0xe8a06000 0x0 0x1000>;
|
||||||
interrupts = <GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH>;
|
interrupts = <GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
clocks = <&crg_ctrl HI3660_OSC32K>;
|
clocks = <&crg_ctrl HI3660_OSC32K>;
|
||||||
@ -1095,7 +1095,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
watchdog1: watchdog@e8a07000 {
|
watchdog1: watchdog@e8a07000 {
|
||||||
compatible = "arm,sp805-wdt", "arm,primecell";
|
compatible = "arm,sp805", "arm,primecell";
|
||||||
reg = <0x0 0xe8a07000 0x0 0x1000>;
|
reg = <0x0 0xe8a07000 0x0 0x1000>;
|
||||||
interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
|
interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
clocks = <&crg_ctrl HI3660_OSC32K>;
|
clocks = <&crg_ctrl HI3660_OSC32K>;
|
||||||
|
@ -134,7 +134,7 @@ static const struct wdt_ops sp805_wdt_ops = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static const struct udevice_id sp805_wdt_ids[] = {
|
static const struct udevice_id sp805_wdt_ids[] = {
|
||||||
{ .compatible = "arm,sp805-wdt" },
|
{ .compatible = "arm,sp805" },
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user