diff options
| author | Weikai Kong | 2025-03-06 23:58:40 +0000 |
|---|---|---|
| committer | Robert Marko | 2025-03-07 13:03:12 +0000 |
| commit | 213799e33e0518a30f6c22c2142060aba12fcf7d (patch) | |
| tree | 61f39a592e3f26bc7adb1e9ca86f34eee293ae05 | |
| parent | 2f9ef8a256b8a3dc6f1bb91d0c55e0aff167d380 (diff) | |
| download | openwrt-213799e33e0518a30f6c22c2142060aba12fcf7d.tar.gz | |
qualcommax: fap650: fix dtc warnings on partitions
This commit adds the missing properties to address the following warnings:
Warning (reg_format): /soc@0/spi@78b5000/flash@0/partitions/partition@x:reg: property has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)"
Signed-off-by: Weikai Kong <priv@pppig236.com>
Link: #18180
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq6018-fap650.dts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq6018-fap650.dts b/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq6018-fap650.dts index e9ebcc9063..48a046e84f 100644 --- a/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq6018-fap650.dts +++ b/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq6018-fap650.dts @@ -225,6 +225,8 @@ spi-max-frequency = <50000000>; partitions { + #address-cells = <1>; + #size-cells = <1>; compatible = "fixed-partitions"; partition@0 { |