git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0ece85e
)
arm64: xilinx: Use lower case for partition address
author
Michal Simek
<michal.simek@amd.com>
Fri, 22 Sep 2023 10:35:33 +0000
(12:35 +0200)
committer
Michal Simek
<michal.simek@amd.com>
Mon, 9 Oct 2023 08:25:32 +0000
(10:25 +0200)
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 <michal.simek@amd.com>
Link:
https://lore.kernel.org/r/66b3361df883ecab4f36ce3b4196fb606c802598.1695378830.git.michal.simek@amd.com
arch/arm/dts/zynqmp-sm-k26-revA.dts
patch
|
blob
|
history
diff --git
a/arch/arm/dts/zynqmp-sm-k26-revA.dts
b/arch/arm/dts/zynqmp-sm-k26-revA.dts
index
47e8e74
..
1d62c48
100644
(file)
--- 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@22
A
0000 {
+ partition@22
a
0000 {
label = "User";
- reg = <0x22
A
0000 0x1d60000>; /* 29.375 MB */
+ reg = <0x22
a
0000 0x1d60000>; /* 29.375 MB */
};
};
};