Commit bc016065 authored by Maxime Ripard's avatar Maxime Ripard
Browse files

ARM: dts: sun5i: Remove underscores from nodes names



Some GPIO pinctrl nodes cannot be easily removed, because they would also
change the pin configuration, for example to add a pull resistor or change
the current delivered by the pin.

Those nodes still have underscores and unit-addresses in their node names
in our DTs, so adjust their name to remove the warnings. Use that occasion
to also fix some poorly chosen node-names.

Signed-off-by: default avatarMaxime Ripard <maxime.ripard@bootlin.com>
Acked-by: default avatarChen-Yu Tsai <wens@csie.org>
parent 335d7fcb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -106,7 +106,7 @@
};

&pio {
	led_pins_t003: led_pins@0 {
	led_pins_t003: led-pin {
		pins = "PB2";
		function = "gpio_out";
		drive-strength = <20>;
+2 −2
Original line number Diff line number Diff line
@@ -125,13 +125,13 @@
};

&pio {
	usb0_id_detect_pin: usb0_id_detect_pin@0 {
	usb0_id_detect_pin: usb0-id-detect-pin {
		pins = "PG12";
		function = "gpio_in";
		bias-pull-up;
	};

	led_pins_t004: led_pins@0 {
	led_pins_t004: led-pin {
		pins = "PB2";
		function = "gpio_out";
		drive-strength = <20>;
+2 −2
Original line number Diff line number Diff line
@@ -223,13 +223,13 @@
};

&pio {
	led_pins_olinuxino: led_pins@0 {
	led_pins_olinuxino: led-pin {
		pins = "PE3";
		function = "gpio_out";
		drive-strength = <20>;
	};

	usb0_id_detect_pin: usb0_id_detect_pin@0 {
	usb0_id_detect_pin: usb0-id-detect-pin {
		pins = "PG12";
		function = "gpio_in";
		bias-pull-up;
+1 −1
Original line number Diff line number Diff line
@@ -98,7 +98,7 @@
};

&pio {
	led_pins_r7: led_pins@0 {
	led_pins_r7: led-pin {
		pins = "PB2";
		function = "gpio_out";
		drive-strength = <20>;
+2 −2
Original line number Diff line number Diff line
@@ -134,13 +134,13 @@
};

&pio {
	usb0_vbus_detect_pin: usb0_vbus_detect_pin@0 {
	usb0_vbus_detect_pin: usb0-vbus-detect-pin {
		pins = "PG1";
		function = "gpio_in";
		bias-pull-down;
	};

	usb0_id_detect_pin: usb0_id_detect_pin@0 {
	usb0_id_detect_pin: usb0-id-detect-pin {
		pins = "PG2";
		function = "gpio_in";
		bias-pull-up;
Loading