diff options
| author | Marek Vasut <[email protected]> | 2021-06-10 17:03:06 +0200 |
|---|---|---|
| committer | Alexandre Torgue <[email protected]> | 2021-07-30 15:38:11 +0200 |
| commit | 8aec45d7884f16cc21d668693c5b88bff8df0f02 (patch) | |
| tree | 30c5c82127d7c80b3fa209b9a9923d6e733eb018 | |
| parent | 6257dfc1c412dcdbd76ca5fa92c8444222dbe5b0 (diff) | |
ARM: dts: stm32: Set {bitclock,frame}-master phandles on ST DKx
Fix the following dtbs_check warning:
cs42l51@4a: port:endpoint@0:frame-master: True is not of type 'array'
cs42l51@4a: port:endpoint@0:bitclock-master: True is not of type 'array'
Signed-off-by: Marek Vasut <[email protected]>
Cc: Alexandre Torgue <[email protected]>
Cc: Patrice Chotard <[email protected]>
Cc: Patrick Delaunay <[email protected]>
Cc: [email protected]
To: [email protected]
Signed-off-by: Alexandre Torgue <[email protected]>
| -rw-r--r-- | arch/arm/boot/dts/stm32mp15xx-dkx.dtsi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/boot/dts/stm32mp15xx-dkx.dtsi b/arch/arm/boot/dts/stm32mp15xx-dkx.dtsi index 06c11bad882a..899bfe04aeb9 100644 --- a/arch/arm/boot/dts/stm32mp15xx-dkx.dtsi +++ b/arch/arm/boot/dts/stm32mp15xx-dkx.dtsi @@ -220,15 +220,15 @@ cs42l51_tx_endpoint: endpoint@0 { reg = <0>; remote-endpoint = <&sai2a_endpoint>; - frame-master; - bitclock-master; + frame-master = <&cs42l51_tx_endpoint>; + bitclock-master = <&cs42l51_tx_endpoint>; }; cs42l51_rx_endpoint: endpoint@1 { reg = <1>; remote-endpoint = <&sai2b_endpoint>; - frame-master; - bitclock-master; + frame-master = <&cs42l51_rx_endpoint>; + bitclock-master = <&cs42l51_rx_endpoint>; }; }; }; |