Commit 61edd91c authored by Lokesh Vutla's avatar Lokesh Vutla Committed by Tony Lindgren
Browse files

ARM: dts: ti: Fix node name for all ecap dt nodes



dtbs_check produces the following warning for ecap node name:
ecap@100: $nodename:0: 'ecap@100' does not match '^pwm(@.*|-[0-9a-f])*$'

Fix this by replacing ecap with pwm in node name

Signed-off-by: default avatarLokesh Vutla <lokeshvutla@ti.com>
Reviewed-by: default avatarGrygorii Strashko <grygorii.strashko@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent be8c9d79
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -333,7 +333,7 @@ tlv320aic23: codec@1a {
&epwmss0 {
	status = "okay";

	ecap0: ecap@100 {
	ecap0: pwm@100 {
		status = "okay";
		pinctrl-names = "default";
		pinctrl-0 = <&ecap0_pins>;
+1 −1
Original line number Diff line number Diff line
@@ -495,7 +495,7 @@ &elm {
&epwmss0 {
	status = "okay";

	ecap0: ecap@100 {
	ecap0: pwm@100 {
		status = "okay";
		pinctrl-names = "default";
		pinctrl-0 = <&ecap0_pins>;
+1 −1
Original line number Diff line number Diff line
@@ -510,7 +510,7 @@ &usb1 {
&epwmss2 {
	status = "okay";

	ecap2: ecap@100 {
	ecap2: pwm@100 {
		status = "okay";
		pinctrl-names = "default";
		pinctrl-0 = <&ecap2_pins>;
+3 −3
Original line number Diff line number Diff line
@@ -1995,7 +1995,7 @@ epwmss0: epwmss@0 {
				status = "disabled";
				ranges = <0 0 0x1000>;

				ecap0: ecap@100 {
				ecap0: pwm@100 {
					compatible = "ti,am3352-ecap";
					#pwm-cells = <3>;
					reg = <0x100 0x80>;
@@ -2054,7 +2054,7 @@ epwmss1: epwmss@0 {
				status = "disabled";
				ranges = <0 0 0x1000>;

				ecap1: ecap@100 {
				ecap1: pwm@100 {
					compatible = "ti,am3352-ecap";
					#pwm-cells = <3>;
					reg = <0x100 0x80>;
@@ -2113,7 +2113,7 @@ epwmss2: epwmss@0 {
				status = "disabled";
				ranges = <0 0 0x1000>;

				ecap2: ecap@100 {
				ecap2: pwm@100 {
					compatible = "ti,am3352-ecap";
					#pwm-cells = <3>;
					reg = <0x100 0x80>;
+3 −3
Original line number Diff line number Diff line
@@ -1747,7 +1747,7 @@ epwmss0: epwmss@0 {
				ranges = <0 0 0x1000>;
				status = "disabled";

				ecap0: ecap@100 {
				ecap0: pwm@100 {
					compatible = "ti,am4372-ecap",
						     "ti,am3352-ecap";
					#pwm-cells = <3>;
@@ -1797,7 +1797,7 @@ epwmss1: epwmss@0 {
				ranges = <0 0 0x1000>;
				status = "disabled";

				ecap1: ecap@100 {
				ecap1: pwm@100 {
					compatible = "ti,am4372-ecap",
						     "ti,am3352-ecap";
					#pwm-cells = <3>;
@@ -1847,7 +1847,7 @@ epwmss2: epwmss@0 {
				ranges = <0 0 0x1000>;
				status = "disabled";

				ecap2: ecap@100 {
				ecap2: pwm@100 {
					compatible = "ti,am4372-ecap",
						     "ti,am3352-ecap";
					#pwm-cells = <3>;
Loading