Commit 2f477ee3 authored by Arnd Bergmann's avatar Arnd Bergmann
Browse files

Revert "arm64: dts: tegra: Fix boolean properties with values"

This reverts commit 1a67653d, which caused a boot regression.

The behavior of the "drive-push-pull" in the kernel does not
match what the binding document describes. Revert Rob's patch
to make the DT match the kernel again, rather than the binding.

Link: https://lore.kernel.org/lkml/YlVAy95eF%2F9b1nmu@orome/


Reported-by: default avatarThierry Reding <thierry.reding@gmail.com>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent 846e24dc
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -262,25 +262,25 @@
					gpio4 {
						pins = "gpio4";
						function = "32k-out1";
						drive-push-pull;
						drive-push-pull = <1>;
					};

					gpio5 {
						pins = "gpio5";
						function = "gpio";
						drive-push-pull;
						drive-push-pull = <0>;
					};

					gpio6 {
						pins = "gpio6";
						function = "gpio";
						drive-push-pull;
						drive-push-pull = <1>;
					};

					gpio7 {
						pins = "gpio7";
						function = "gpio";
						drive-push-pull;
						drive-push-pull = <0>;
					};
				};

+4 −4
Original line number Diff line number Diff line
@@ -462,25 +462,25 @@
					gpio4 {
						pins = "gpio4";
						function = "32k-out1";
						drive-push-pull;
						drive-push-pull = <1>;
					};

					gpio5 {
						pins = "gpio5";
						function = "gpio";
						drive-push-pull;
						drive-push-pull = <0>;
					};

					gpio6 {
						pins = "gpio6";
						function = "gpio";
						drive-push-pull;
						drive-push-pull = <1>;
					};

					gpio7 {
						pins = "gpio7";
						function = "gpio";
						drive-push-pull;
						drive-push-pull = <1>;
					};
				};

+3 −3
Original line number Diff line number Diff line
@@ -174,19 +174,19 @@
					gpio4 {
						pins = "gpio4";
						function = "32k-out1";
						drive-push-pull;
						drive-push-pull = <1>;
					};

					gpio6 {
						pins = "gpio6";
						function = "gpio";
						drive-push-pull;
						drive-push-pull = <1>;
					};

					gpio7 {
						pins = "gpio7";
						function = "gpio";
						drive-push-pull;
						drive-push-pull = <0>;
					};
				};

+3 −3
Original line number Diff line number Diff line
@@ -148,19 +148,19 @@
					gpio4 {
						pins = "gpio4";
						function = "32k-out1";
						drive-push-pull;
						drive-push-pull = <1>;
					};

					gpio6 {
						pins = "gpio6";
						function = "gpio";
						drive-push-pull;
						drive-push-pull = <1>;
					};

					gpio7 {
						pins = "gpio7";
						function = "gpio";
						drive-push-pull;
						drive-push-pull = <0>;
					};
				};

+3 −3
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@
				gpio1 {
					pins = "gpio1";
					function = "fps-out";
					drive-push-pull;
					drive-push-pull = <1>;
					maxim,active-fps-source = <MAX77620_FPS_SRC_0>;
					maxim,active-fps-power-up-slot = <7>;
					maxim,active-fps-power-down-slot = <0>;
@@ -68,7 +68,7 @@
				gpio2_3 {
					pins = "gpio2", "gpio3";
					function = "fps-out";
					drive-open-drain;
					drive-open-drain = <1>;
					maxim,active-fps-source = <MAX77620_FPS_SRC_0>;
				};

@@ -80,7 +80,7 @@
				gpio5_6_7 {
					pins = "gpio5", "gpio6", "gpio7";
					function = "gpio";
					drive-push-pull;
					drive-push-pull = <1>;
				};
			};

Loading