Message ID | 20220306111125.116455-10-krzysztof.kozlowski@canonical.com (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | dt-bindings: ufs: add common platform bindings + fixes | expand |
On Sun, 6 Mar 2022 12:11:22 +0100, Krzysztof Kozlowski wrote: > The DT schema expects 'freq-table-hz' property to be an uint32-matrix, > which is also easier to read. > > Applied, thanks! [09/12] arm64: dts: hisilicon: align 'freq-table-hz' with dtschema in UFS commit: 65b96377bf9130617ced41f317f3ec387d3e0dc3 Best regards,
Hi Krzysztof, On 2022/4/19 18:12, Krzysztof Kozlowski wrote: > On Sun, 6 Mar 2022 12:11:22 +0100, Krzysztof Kozlowski wrote: >> The DT schema expects 'freq-table-hz' property to be an uint32-matrix, >> which is also easier to read. >> >> > > Applied, thanks! > > [09/12] arm64: dts: hisilicon: align 'freq-table-hz' with dtschema in UFS > commit: 65b96377bf9130617ced41f317f3ec387d3e0dc3 > Thanks! Best Regards, Wei > Best regards, >
diff --git a/arch/arm64/boot/dts/hisilicon/hi3660.dtsi b/arch/arm64/boot/dts/hisilicon/hi3660.dtsi index 8bd6d7e8a474..6b3057a09251 100644 --- a/arch/arm64/boot/dts/hisilicon/hi3660.dtsi +++ b/arch/arm64/boot/dts/hisilicon/hi3660.dtsi @@ -1045,8 +1045,8 @@ ufs: ufs@ff3b0000 { clocks = <&crg_ctrl HI3660_CLK_GATE_UFSIO_REF>, <&crg_ctrl HI3660_CLK_GATE_UFSPHY_CFG>; clock-names = "ref_clk", "phy_clk"; - freq-table-hz = <0 0 - 0 0>; + freq-table-hz = <0 0>, + <0 0>; /* offset: 0x84; bit: 12 */ resets = <&crg_rst 0x84 12>; reset-names = "rst"; diff --git a/arch/arm64/boot/dts/hisilicon/hi3670.dtsi b/arch/arm64/boot/dts/hisilicon/hi3670.dtsi index 636c8817df7e..3125c3869c69 100644 --- a/arch/arm64/boot/dts/hisilicon/hi3670.dtsi +++ b/arch/arm64/boot/dts/hisilicon/hi3670.dtsi @@ -671,8 +671,8 @@ ufs: ufs@ff3c0000 { clocks = <&crg_ctrl HI3670_CLK_GATE_UFSIO_REF>, <&crg_ctrl HI3670_CLK_GATE_UFS_SUBSYS>; clock-names = "ref_clk", "phy_clk"; - freq-table-hz = <0 0 - 0 0>; + freq-table-hz = <0 0>, + <0 0>; /* offset: 0x84; bit: 12 */ resets = <&crg_rst 0x84 12>; reset-names = "rst";
The DT schema expects 'freq-table-hz' property to be an uint32-matrix, which is also easier to read. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> --- arch/arm64/boot/dts/hisilicon/hi3660.dtsi | 4 ++-- arch/arm64/boot/dts/hisilicon/hi3670.dtsi | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-)