Message ID | 20230215164524.1335-1-johan+linaro@kernel.org (mailing list archive) |
---|---|
State | Rejected, archived |
Headers | show |
Series | [1/2] arm64: dts: sc8280xp-crd: fix external display 'data-lanes' | expand |
On Wed, Feb 15, 2023 at 05:45:23PM +0100, Johan Hovold wrote: > The 'data-lanes' property belongs in the controller node but was > erroneously moved to the endpoint nodes in the last revision of the > external display series: > > [drm] Invalid property "data-lanes", default max DP lanes = 4 > > Fixes: bc9a747ae91f ("arm64: dts: qcom: sc8280xp-crd: Introduce pmic_glink") > Signed-off-by: Johan Hovold <johan+linaro@kernel.org> > --- Please disregard these patches which are only needed for 6.2 backports of the above mentioned series. Sorry about the noise. Johan
diff --git a/arch/arm64/boot/dts/qcom/sc8280xp-crd.dts b/arch/arm64/boot/dts/qcom/sc8280xp-crd.dts index 0c3bdd3cdb9e..db6eb19d0da7 100644 --- a/arch/arm64/boot/dts/qcom/sc8280xp-crd.dts +++ b/arch/arm64/boot/dts/qcom/sc8280xp-crd.dts @@ -379,20 +379,22 @@ &mdss0 { }; &mdss0_dp0 { + data-lanes = <0 1>; + status = "okay"; }; &mdss0_dp0_out { - data-lanes = <0 1>; remote-endpoint = <&pmic_glink_con0_ss>; }; &mdss0_dp1 { + data-lanes = <0 1>; + status = "okay"; }; &mdss0_dp1_out { - data-lanes = <0 1>; remote-endpoint = <&pmic_glink_con1_ss>; };
The 'data-lanes' property belongs in the controller node but was erroneously moved to the endpoint nodes in the last revision of the external display series: [drm] Invalid property "data-lanes", default max DP lanes = 4 Fixes: bc9a747ae91f ("arm64: dts: qcom: sc8280xp-crd: Introduce pmic_glink") Signed-off-by: Johan Hovold <johan+linaro@kernel.org> --- arch/arm64/boot/dts/qcom/sc8280xp-crd.dts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)