diff options
| author | George Moussalem | 2025-05-01 18:01:20 +0000 |
|---|---|---|
| committer | Robert Marko | 2025-05-01 18:40:24 +0000 |
| commit | d879e59823514b6134db524824bb4fcc59cfb0cf (patch) | |
| tree | 051def6c736d51eb26125e1b54458d1c6efb7245 | |
| parent | a0fa3ed36f5e94d602d9c7574915648444f4abf4 (diff) | |
| download | openwrt-d879e59823514b6134db524824bb4fcc59cfb0cf.tar.gz | |
qualcommax: ipq50xx: fix DTB warning in USB node of Linksys MR5500
Fix DTB warning when compiling an image by adding the missing hash sign
of adress-cells in the usb_dwc node.
Signed-off-by: George Moussalem <george.moussalem@outlook.com>
Link: https://github.com/openwrt/openwrt/pull/18672
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq5018-mr5500.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq5018-mr5500.dts b/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq5018-mr5500.dts index ecf5794180..8dbd8a5d88 100644 --- a/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq5018-mr5500.dts +++ b/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq5018-mr5500.dts @@ -294,7 +294,7 @@ }; &usb_dwc { - address-cells = <1>; + #address-cells = <1>; #size-cells = <0>; dr_mode = "host"; |