Commit 6a3b10e5 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven
Browse files

ARM: dts: renesas: Align GPIO hog names with dtschema



Dtschema expects GPIO hogs to end with a "hog" suffix.
Also, the convention for node names is to use hyphens, not underscores.

Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/972d982024cbb04dcf29b2a0ac6beaf41e66c363.1645705927.git.geert+renesas@glider.be
parent 48d8ee5b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -181,7 +181,7 @@ &du {
};

&gpio2 {
	touch-interrupt {
	touch-interrupt-hog {
		gpio-hog;
		gpios = <12 GPIO_ACTIVE_LOW>;
		input;
+1 −1
Original line number Diff line number Diff line
@@ -266,7 +266,7 @@ lcd0_pins: lcd0 {
		function = "lcd0";
	};

	lcd0_mux {
	lcd0-mux-hog {
		/* DBGMD/LCDC0/FSIA MUX */
		gpio-hog;
		gpios = <176 0>;
+2 −2
Original line number Diff line number Diff line
@@ -91,10 +91,10 @@ phy1: ethernet-phy@1 {

&gpio0 {
	/* Disable hogging GP0_18 to output LOW */
	/delete-node/ qspi_en;
	/delete-node/ qspi-en-hog;

	/* Hog GP0_18 to output HIGH to enable VIN2 */
	vin2_en {
	vin2-en-hog {
		gpio-hog;
		gpios = <18 GPIO_ACTIVE_HIGH>;
		output-high;
+2 −2
Original line number Diff line number Diff line
@@ -226,7 +226,7 @@ &du {
};

&gpio0 {
	touch-interrupt {
	touch-interrupt-hog {
		gpio-hog;
		gpios = <24 GPIO_ACTIVE_LOW>;
		input;
@@ -234,7 +234,7 @@ touch-interrupt {
};

&gpio1 {
	can-trx-en-gpio{
	can-trx-en-hog {
		gpio-hog;
		gpios = <28 GPIO_ACTIVE_HIGH>;
		output-low;
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ &extal_clk {

&gpio0 {
	/* GP0_18 set low to select QSPI. Doing so will disable VIN2 */
	qspi_en {
	qspi-en-hog {
		gpio-hog;
		gpios = <18 GPIO_ACTIVE_HIGH>;
		output-low;
Loading