diff options
| author | Kuldeep Singh <singh.kuldeep87k@gmail.com> | 2022-03-07 23:51:00 +0530 | 
|---|---|---|
| committer | Florian Fainelli <f.fainelli@gmail.com> | 2022-03-07 11:18:11 -0800 | 
| commit | bb8555fe87154e90dcd5a05082fd499d46c93fb5 (patch) | |
| tree | ac35c0d83212cc609319ce6ce937275fbd9a6705 | |
| parent | 55927cb44db43a57699fa652e2437a91620385dc (diff) | |
arm64: dts: ns2: Fix spi clock name
SPI clock name for pl022 is "sspclk" and not "spiclk".
Also fix below dtc warning:
clock-names:0: 'spiclk' is not one of ['SSPCLK', 'sspclk']
Signed-off-by: Kuldeep Singh <singh.kuldeep87k@gmail.com>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
| -rw-r--r-- | arch/arm64/boot/dts/broadcom/northstar2/ns2.dtsi | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/arch/arm64/boot/dts/broadcom/northstar2/ns2.dtsi b/arch/arm64/boot/dts/broadcom/northstar2/ns2.dtsi index 60c1f64e9617..f59fa3979a04 100644 --- a/arch/arm64/boot/dts/broadcom/northstar2/ns2.dtsi +++ b/arch/arm64/boot/dts/broadcom/northstar2/ns2.dtsi @@ -644,7 +644,7 @@  			reg = <0x66180000 0x1000>;  			interrupts = <GIC_SPI 404 IRQ_TYPE_LEVEL_HIGH>;  			clocks = <&iprocslow>, <&iprocslow>; -			clock-names = "spiclk", "apb_pclk"; +			clock-names = "sspclk", "apb_pclk";  			#address-cells = <1>;  			#size-cells = <0>;  			status = "disabled"; @@ -655,7 +655,7 @@  			reg = <0x66190000 0x1000>;  			interrupts = <GIC_SPI 405 IRQ_TYPE_LEVEL_HIGH>;  			clocks = <&iprocslow>, <&iprocslow>; -			clock-names = "spiclk", "apb_pclk"; +			clock-names = "sspclk", "apb_pclk";  			#address-cells = <1>;  			#size-cells = <0>;  			status = "disabled"; | 
