diff options
| author | Michal Simek <[email protected]> | 2023-09-22 12:35:33 +0200 |
|---|---|---|
| committer | Michal Simek <[email protected]> | 2023-10-09 10:25:32 +0200 |
| commit | 1aa867094bde250aea13599c1e37229f1ea897b0 (patch) | |
| tree | 8ead658f597060c168a8221b56306a2e81cc0e91 | |
| parent | 0ece85e4525f3c5ba74bf27061cc0db88a411587 (diff) | |
arm64: xilinx: Use lower case for partition address
Lower case should be used for register address.
Issue is reported as:
flash@0: partitions: Unevaluated properties are not allowed
('partition@22A0000' was unexpected)
Signed-off-by: Michal Simek <[email protected]>
Link: https://lore.kernel.org/r/66b3361df883ecab4f36ce3b4196fb606c802598.1695378830.git.michal.simek@amd.com
| -rw-r--r-- | arch/arm/dts/zynqmp-sm-k26-revA.dts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/dts/zynqmp-sm-k26-revA.dts b/arch/arm/dts/zynqmp-sm-k26-revA.dts index 47e8e747ba3..1d62c48e062 100644 --- a/arch/arm/dts/zynqmp-sm-k26-revA.dts +++ b/arch/arm/dts/zynqmp-sm-k26-revA.dts @@ -233,9 +233,9 @@ label = "Secure OS Storage"; reg = <0x2280000 0x20000>; /* 128KB */ }; - partition@22A0000 { + partition@22a0000 { label = "User"; - reg = <0x22A0000 0x1d60000>; /* 29.375 MB */ + reg = <0x22a0000 0x1d60000>; /* 29.375 MB */ }; }; }; |
