diff options
author | Bryan O'Donoghue <bryan.odonoghue@linaro.org> | 2023-08-12 02:47:34 +0300 |
---|---|---|
committer | Bjorn Andersson <andersson@kernel.org> | 2023-08-14 05:38:32 +0300 |
commit | 3652866ff493db60e2f767bd751fe15c1b4bd37a (patch) | |
tree | d8d8c30e24dc0f8ff50c97017e884eaead05e612 /arch/arm64 | |
parent | 43a684580819e7f35b6cb38236be63c4cba26ef4 (diff) | |
download | linux-3652866ff493db60e2f767bd751fe15c1b4bd37a.tar.xz |
arm64: dts: qcom: apq8016-sbc: Fix ov5640 data-lanes declaration
The yaml constraint for data-lanes is [1, 2] not [0, 2]. The driver itself
doesn't do anything with the data-lanes declaration save count the number
of specified data-lanes and calculate the link rate so, this change doesn't
have any functional side-effects.
Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Link: https://lore.kernel.org/r/20230811234738.2859417-4-bryan.odonoghue@linaro.org
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
Diffstat (limited to 'arch/arm64')
-rw-r--r-- | arch/arm64/boot/dts/qcom/apq8016-sbc.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/qcom/apq8016-sbc.dts b/arch/arm64/boot/dts/qcom/apq8016-sbc.dts index 75b4e5ff7c95..0481a4a82090 100644 --- a/arch/arm64/boot/dts/qcom/apq8016-sbc.dts +++ b/arch/arm64/boot/dts/qcom/apq8016-sbc.dts @@ -291,7 +291,7 @@ port { ov5640_ep: endpoint { - data-lanes = <0 2>; + data-lanes = <1 2>; remote-endpoint = <&csiphy0_ep>; }; }; |