Commit 1cd15986 authored by David Heidelberg's avatar David Heidelberg Committed by Bjorn Andersson
Browse files

ARM: dts: qcom: correct mmc node naming



MMC nodes has to be named mmc@ to comply with dt-bindings.

Fix warnings as:
arch/arm/boot/dts/qcom-msm8660-surf.dt.yaml: sdcc@12400000: $nodename:0: 'sdcc@12400000' does not match '^mmc(@.*)?$'
	From schema: Documentation/devicetree/bindings/mmc/arm,pl18x.yaml

Signed-off-by: default avatarDavid Heidelberg <david@ixit.cz>
Signed-off-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
Link: https://lore.kernel.org/r/20211020201440.229196-1-david@ixit.cz
parent 14a1f6c9
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -899,7 +899,7 @@
		};
		amba {
			/* Internal 3.69 GiB eMMC */
			sdcc@12400000 {
			mmc@12400000 {
				status = "okay";
				pinctrl-names = "default";
				pinctrl-0 = <&dragon_sdcc1_pins>;
@@ -908,7 +908,7 @@
			};

			/* External micro SD card, directly connected, pulled up to 2.85 V */
			sdcc@12180000 {
			mmc@12180000 {
				status = "okay";
				/* Enable SSBI GPIO 22 as input, use for card detect */
				pinctrl-names = "default";
@@ -922,7 +922,7 @@
			 * Second external micro SD card, using two TXB104RGYR levelshifters
			 * to lift from 1.8 V to 2.85 V
			 */
			sdcc@12200000 {
			mmc@12200000 {
				status = "okay";
				/* Enable SSBI GPIO 26 as input, use for card detect */
				pinctrl-names = "default";
+1 −1
Original line number Diff line number Diff line
@@ -335,7 +335,7 @@

		amba {
			/* eMMC */
			sdcc@12400000 {
			mmc@12400000 {
				status = "okay";
				vmmc-supply = <&pm8921_l5>;
				vqmmc-supply = <&pm8921_s4>;
+3 −3
Original line number Diff line number Diff line
@@ -220,14 +220,14 @@

		amba {
			/* eMMC */
			sdcc1: sdcc@12400000 {
			sdcc1: mmc@12400000 {
				status = "okay";
				vmmc-supply = <&pm8921_l5>;
				vqmmc-supply = <&pm8921_s4>;
			};

			/* External micro SD card */
			sdcc3: sdcc@12180000 {
			sdcc3: mmc@12180000 {
				status = "okay";
				vmmc-supply = <&v3p3_fixed>;
				pinctrl-names	= "default";
@@ -235,7 +235,7 @@
				cd-gpios	= <&tlmm_pinmux 26 GPIO_ACTIVE_LOW>;
			};
			/* WLAN */
			sdcc4: sdcc@121c0000 {
			sdcc4: mmc@121c0000 {
				status = "okay";
				vmmc-supply = <&v3p3_fixed>;
				vqmmc-supply = <&v3p3_fixed>;
+3 −3
Original line number Diff line number Diff line
@@ -314,14 +314,14 @@

		amba {
			/* eMMC */
			sdcc1: sdcc@12400000 {
			sdcc1: mmc@12400000 {
				status = "okay";
				vmmc-supply = <&pm8921_l5>;
				vqmmc-supply = <&pm8921_s4>;
			};

			/* External micro SD card */
			sdcc3: sdcc@12180000 {
			sdcc3: mmc@12180000 {
				status = "okay";
				vmmc-supply = <&pm8921_l6>;
				pinctrl-names	= "default";
@@ -329,7 +329,7 @@
				cd-gpios	= <&tlmm_pinmux 26 GPIO_ACTIVE_LOW>;
			};
			/* WLAN */
			sdcc4: sdcc@121c0000 {
			sdcc4: mmc@121c0000 {
				status = "okay";
				vmmc-supply = <&ext_3p3v>;
				vqmmc-supply = <&pm8921_lvs1>;
+2 −2
Original line number Diff line number Diff line
@@ -374,14 +374,14 @@
		};

		amba {
			sdcc1: sdcc@12400000 {
			sdcc1: mmc@12400000 {
				status = "okay";

				vmmc-supply = <&pm8921_l5>;
				vqmmc-supply = <&pm8921_s4>;
			};

			sdcc3: sdcc@12180000 {
			sdcc3: mmc@12180000 {
				status = "okay";

				vmmc-supply = <&pm8921_l6>;
Loading