Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

arm64: dts: qcom: sa8540p-ride: Fix some i2c pinctrl settings

Some of the pinctrl groups were invalid for the selected pins. Select
the proper qup group to fix these warnings:

[ 6.523566] sc8280xp-tlmm f100000.pinctrl: invalid group "gpio135" for function "qup15"
[ 6.535042] sc8280xp-tlmm f100000.pinctrl: invalid group "gpio136" for function "qup15"
[ 6.597536] sc8280xp-tlmm f100000.pinctrl: invalid group "gpio158" for function "qup15"
[ 6.597544] sc8280xp-tlmm f100000.pinctrl: invalid group "gpio159" for function "qup15"
[ 6.597991] sc8280xp-tlmm f100000.pinctrl: invalid group "gpio0" for function "qup15"
[ 6.597996] sc8280xp-tlmm f100000.pinctrl: invalid group "gpio1" for function "qup15"

Fixes: e073899ec3e1 ("arm64: dts: qcom: sa8540p-ride: add i2c nodes")
Reviewed-by: Shazad Hussain <quic_shazhuss@quicinc.com>
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>
Reviewed-by: Brian Masney <bmasney@redhat.com>
Signed-off-by: Andrew Halaney <ahalaney@redhat.com>
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
Link: https://lore.kernel.org/r/20230130154823.117542-1-ahalaney@redhat.com

authored by

Andrew Halaney and committed by
Bjorn Andersson
f187e989 3a63e478

+3 -3
+3 -3
arch/arm64/boot/dts/qcom/sa8540p-ride.dts
··· 318 318 &tlmm { 319 319 i2c0_default: i2c0-default-state { 320 320 pins = "gpio135", "gpio136"; 321 - function = "qup15"; 321 + function = "qup0"; 322 322 drive-strength = <2>; 323 323 bias-pull-up; 324 324 }; 325 325 326 326 i2c1_default: i2c1-default-state { 327 327 pins = "gpio158", "gpio159"; 328 - function = "qup15"; 328 + function = "qup1"; 329 329 drive-strength = <2>; 330 330 bias-pull-up; 331 331 }; 332 332 333 333 i2c12_default: i2c12-default-state { 334 334 pins = "gpio0", "gpio1"; 335 - function = "qup15"; 335 + function = "qup12"; 336 336 drive-strength = <2>; 337 337 bias-pull-up; 338 338 };