diff options
| author | Vincent Jardin <[email protected]> | 2026-05-20 23:48:41 +0200 |
|---|---|---|
| committer | Peng Fan <[email protected]> | 2026-06-09 23:16:28 +0800 |
| commit | 81f4946d8c42084ced6bd0908ad0cc9e01e53ecc (patch) | |
| tree | 8cdd1cb147e03a961bdacefeb12283dc9dad394e | |
| parent | e91911169bc737ee4a79963a1cba8db2aab7c1c0 (diff) | |
arm: dts: fsl-lx2160a: wdt0 for watchdog node
The SBSA generic watchdog node is currently declared without a
label, so any per-board DTS that wants to override one of its
properties has to use path syntax &{/soc/watchdog@23a0000}.
It fails with
Label or path /soc/watchdog@23a0000 not found
when the path contains an `@`, forcing to duplicate the node.
Adding a one-line
wdt0:
label allows to override the node with
&wdt0 { ... };
(for example to change timeout-sec).
Zero impact on existing boards.
Signed-off-by: Vincent Jardin <[email protected]>
Signed-off-by: Peng Fan <[email protected]>
| -rw-r--r-- | arch/arm/dts/fsl-lx2160a.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/dts/fsl-lx2160a.dtsi b/arch/arm/dts/fsl-lx2160a.dtsi index 4b4b1c100b8..551efda8fe4 100644 --- a/arch/arm/dts/fsl-lx2160a.dtsi +++ b/arch/arm/dts/fsl-lx2160a.dtsi @@ -292,7 +292,7 @@ #interrupt-cells = <2>; }; - watchdog@23a0000 { + wdt0: watchdog@23a0000 { compatible = "arm,sbsa-gwdt"; reg = <0x0 0x23a0000 0 0x1000>, <0x0 0x2390000 0 0x1000>; |
