diff options
author | Rob Herring <robh@kernel.org> | 2022-03-04 23:25:58 +0300 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2022-03-05 20:12:33 +0300 |
commit | 37cbd3c522869247ed4525b5042ff4c6a276c813 (patch) | |
tree | 0ae18f1802e06b444471dd1602931e51210b1848 /arch/arm64/boot | |
parent | 3cc8cd2d25954ed5794df2d190b81c7325c584e3 (diff) | |
download | linux-37cbd3c522869247ed4525b5042ff4c6a276c813.tar.xz |
arm64: dts: rockchip: Fix SDIO regulator supply properties on rk3399-firefly
A label reference without brackets is a path string, not a phandle as
intended. Add the missing brackets.
Fixes: a5002c41c383 ("arm64: dts: rockchip: add WiFi module support for Firefly-RK3399")
Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20220304202559.317749-1-robh@kernel.org
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Diffstat (limited to 'arch/arm64/boot')
-rw-r--r-- | arch/arm64/boot/dts/rockchip/rk3399-firefly.dts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/boot/dts/rockchip/rk3399-firefly.dts b/arch/arm64/boot/dts/rockchip/rk3399-firefly.dts index 19683f1dbf93..c654b6b02f3f 100644 --- a/arch/arm64/boot/dts/rockchip/rk3399-firefly.dts +++ b/arch/arm64/boot/dts/rockchip/rk3399-firefly.dts @@ -775,8 +775,8 @@ sd-uhs-sdr104; /* Power supply */ - vqmmc-supply = &vcc1v8_s3; /* IO line */ - vmmc-supply = &vcc_sdio; /* card's power */ + vqmmc-supply = <&vcc1v8_s3>; /* IO line */ + vmmc-supply = <&vcc_sdio>; /* card's power */ #address-cells = <1>; #size-cells = <0>; |