diff options
| author | Frank Li <[email protected]> | 2024-08-19 13:01:19 -0400 |
|---|---|---|
| committer | Shawn Guo <[email protected]> | 2024-09-04 17:36:21 +0800 |
| commit | cb2633ee47d92029de74ab67d2a1fe1368d611a8 (patch) | |
| tree | 4e898307533da5d1db592bf6331efe11a81276dd | |
| parent | 5c7a868e297fcd3982162d5e3f9da5202103650b (diff) | |
arm64: dts: fsl-ls1088a-ten64: change to low case hex value
Change to low case for hex value to fix below warning:
arch/arm64/boot/dts/freescale/fsl-ls1088a-ten64.dtb: flash@0:
partitions: Unevaluated properties are not allowed ('partition@5C0000' was unexpected)
Signed-off-by: Frank Li <[email protected]>
Signed-off-by: Shawn Guo <[email protected]>
| -rw-r--r-- | arch/arm64/boot/dts/freescale/fsl-ls1088a-ten64.dts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1088a-ten64.dts b/arch/arm64/boot/dts/freescale/fsl-ls1088a-ten64.dts index d4867d6cf47c..bea9e8bcafc4 100644 --- a/arch/arm64/boot/dts/freescale/fsl-ls1088a-ten64.dts +++ b/arch/arm64/boot/dts/freescale/fsl-ls1088a-ten64.dts @@ -323,9 +323,9 @@ reg = <0x580000 0x40000>; }; - partition@5C0000 { + partition@5c0000 { label = "dpc"; - reg = <0x5C0000 0x40000>; + reg = <0x5c0000 0x40000>; }; partition@600000 { |