Commit cbfb5668 authored by Marijn Suijten's avatar Marijn Suijten Committed by Bjorn Andersson
Browse files

arm64: dts: qcom: sm6125: Append -state suffix to pinctrl nodes



According to qcom,sm6125-pinctrl.yaml all nodes inside the tlmm must be
suffixed by -state:

    qcom/sm6125-sony-xperia-seine-pdx201.dtb: pinctrl@500000: 'sdc2-off', 'sdc2-on' do not match any of the regexes: '-state$', 'pinctrl-[0-9]+'

The label names have been updated to match, going from sdc2_state_X to
sdc2_X_state.

Fixes: cff4bbaf ("arm64: dts: qcom: Add support for SM6125")
Fixes: 82e17838 ("arm64: dts: qcom: sm6125: Add support for Sony Xperia 10II")
Signed-off-by: default avatarMarijn Suijten <marijn.suijten@somainline.org>
Signed-off-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
Link: https://lore.kernel.org/r/20220508100336.127176-2-marijn.suijten@somainline.org
parent 6990640a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -86,7 +86,7 @@ &hsusb_phy1 {
	status = "okay";
};

&sdc2_state_off {
&sdc2_off_state {
	sd-cd {
		pins = "gpio98";
		drive-strength = <2>;
@@ -94,7 +94,7 @@ sd-cd {
	};
};

&sdc2_state_on {
&sdc2_on_state {
	sd-cd {
		pins = "gpio98";
		drive-strength = <2>;
+4 −4
Original line number Diff line number Diff line
@@ -386,7 +386,7 @@ tlmm: pinctrl@500000 {
			interrupt-controller;
			#interrupt-cells = <2>;

			sdc2_state_off: sdc2-off {
			sdc2_off_state: sdc2-off-state {
				clk {
					pins = "sdc2_clk";
					drive-strength = <2>;
@@ -406,7 +406,7 @@ data {
				};
			};

			sdc2_state_on: sdc2-on {
			sdc2_on_state: sdc2-on-state {
				clk {
					pins = "sdc2_clk";
					drive-strength = <16>;
@@ -490,8 +490,8 @@ sdhc_2: mmc@4784000 {
				 <&xo_board>;
			clock-names = "iface", "core", "xo";

			pinctrl-0 = <&sdc2_state_on>;
			pinctrl-1 = <&sdc2_state_off>;
			pinctrl-0 = <&sdc2_on_state>;
			pinctrl-1 = <&sdc2_off_state>;
			pinctrl-names = "default", "sleep";

			power-domains = <&rpmpd SM6125_VDDCX>;