Commit 05484c17 authored by Zhen Lei's avatar Zhen Lei Committed by Wei Xu
Browse files

ARM: dts: hisilicon: fix errors detected by synopsys-dw-mshc.yaml



Look at the clock-names schema defined in synopsys-dw-mshc.yaml:
  clock-names:
    items:
      - const: biu
      - const: ciu

The "biu" needs to be placed before the "ciu".

Signed-off-by: default avatarZhen Lei <thunder.leizhen@huawei.com>
Signed-off-by: default avatarWei Xu <xuwei5@hisilicon.com>
parent e0b09c35
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -423,7 +423,7 @@ mmc: mmc@1830000 {
			interrupts = <0 35 4>;
			clocks = <&clock HIX5HD2_MMC_CIU_RST>,
				 <&clock HIX5HD2_MMC_BIU_CLK>;
			clock-names = "ciu", "biu";
			clock-names = "biu", "ciu";
		};

		sd: mmc@1820000 {
@@ -432,7 +432,7 @@ sd: mmc@1820000 {
			interrupts = <0 34 4>;
			clocks = <&clock HIX5HD2_SD_CIU_RST>,
				 <&clock HIX5HD2_SD_BIU_CLK>;
			clock-names = "ciu","biu";
			clock-names = "biu", "ciu";
		};

		gmac0: ethernet@1840000 {