Unverified Commit eeb751c4 authored by Arnd Bergmann's avatar Arnd Bergmann
Browse files

Merge tag 'mvebu-dt-6.6-1' of...

Merge tag 'mvebu-dt-6.6-1' of git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu into soc/dt

mvebu dt for 6.6 (part 1)

Fix style issue and incorrect syntax

* tag 'mvebu-dt-6.6-1' of git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu:
  ARM: dts: marvell: dove: drop incorrect reg in fixed regulators
  ARM: dts: marvell: armada: drop incorrect reg in fixed regulators
  ARM: dts: marvell: add missing space before {

Link: https://lore.kernel.org/r/87h6p4t0lv.fsf@BL-laptop


Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parents 7cb74e0c afc19882
Loading
Loading
Loading
Loading
+37 −46
Original line number Diff line number Diff line
@@ -105,14 +105,8 @@
		};
	};

	regulators {
		compatible = "simple-bus";
		#address-cells = <1>;
		#size-cells = <0>;

		usb_power: regulator@1 {
	usb_power: regulator-1 {
		compatible = "regulator-fixed";
			reg = <1>;
		pinctrl-0 = <&xhci_pwr_pin>;
		pinctrl-names = "default";
		regulator-name = "USB3.0 Port Power";
@@ -124,9 +118,8 @@
		gpio = <&gpio0 13 GPIO_ACTIVE_HIGH>;
	};

		sata_r_power: regulator@2 {
	sata_r_power: regulator-2 {
		compatible = "regulator-fixed";
			reg = <2>;
		pinctrl-0 = <&sata_r_pwr_pin>;
		pinctrl-names = "default";
		regulator-name = "SATA-R Power";
@@ -139,9 +132,8 @@
		gpio = <&gpio1 22 GPIO_ACTIVE_HIGH>;
	};

		sata_l_power: regulator@3 {
	sata_l_power: regulator-3 {
		compatible = "regulator-fixed";
			reg = <3>;
		pinctrl-0 = <&sata_l_pwr_pin>;
		pinctrl-names = "default";
		regulator-name = "SATA-L Power";
@@ -154,7 +146,6 @@
		gpio = <&gpio1 24 GPIO_ACTIVE_HIGH>;
	};
};
};

&pciec {
	status = "okay";
+20 −23
Original line number Diff line number Diff line
@@ -46,10 +46,8 @@
		};
	};

	regulators {
		regulator@3 {
	regulator-3 {
		compatible = "regulator-fixed";
			reg = <3>;
		regulator-name = "SATA2 power";
		regulator-min-microvolt = <5000000>;
		regulator-max-microvolt = <5000000>;
@@ -58,9 +56,9 @@
		regulator-boot-on;
		gpio = <&pca9554 6 GPIO_ACTIVE_HIGH>;
	};
		regulator@4 {

	regulator-4 {
		compatible = "regulator-fixed";
			reg = <4>;
		regulator-name = "SATA3 power";
		regulator-min-microvolt = <5000000>;
		regulator-max-microvolt = <5000000>;
@@ -69,7 +67,6 @@
		regulator-boot-on;
		gpio = <&pca9554 7 GPIO_ACTIVE_HIGH>;
	};
	};

	gpio-leds {
		led-red-sata2 {
+20 −28
Original line number Diff line number Diff line
@@ -70,15 +70,8 @@

	};

	regulators {
		compatible = "simple-bus";
		#address-cells = <1>;
		#size-cells = <0>;
		pinctrl-names = "default";

		regulator@1 {
	regulator-1 {
		compatible = "regulator-fixed";
			reg = <1>;
		regulator-name = "SATA0 power";
		regulator-min-microvolt = <5000000>;
		regulator-max-microvolt = <5000000>;
@@ -87,9 +80,9 @@
		regulator-boot-on;
		gpio = <&gpio1 18 GPIO_ACTIVE_HIGH>;
	};
		regulator@2 {

	regulator-2 {
		compatible = "regulator-fixed";
			reg = <2>;
		regulator-name = "SATA1 power";
		regulator-min-microvolt = <5000000>;
		regulator-max-microvolt = <5000000>;
@@ -98,7 +91,6 @@
		regulator-boot-on;
		gpio = <&gpio1 22 GPIO_ACTIVE_HIGH>;
	};
	};

	gpio-fan {
		compatible = "gpio-fan";
+9 −12
Original line number Diff line number Diff line
@@ -32,10 +32,8 @@
		};
	};

	regulators {
		regulator@2 {
	regulator-2 {
		compatible = "regulator-fixed";
			reg = <2>;
		regulator-name = "SATA1 power";
		regulator-min-microvolt = <5000000>;
		regulator-max-microvolt = <5000000>;
@@ -45,4 +43,3 @@
		gpio = <&gpio1 22 GPIO_ACTIVE_HIGH>;
	};
};
};
+19 −26
Original line number Diff line number Diff line
@@ -53,14 +53,8 @@
		};
	};

	regulators {
		compatible = "simple-bus";
		#address-cells = <1>;
		#size-cells = <0>;

		regulator@0 {
	regulator-0 {
		compatible = "regulator-fixed";
			reg = <0>;
		regulator-name = "USB Power";
		regulator-min-microvolt = <5000000>;
		regulator-max-microvolt = <5000000>;
@@ -68,9 +62,9 @@
		regulator-boot-on;
		gpio = <&gpio1 27 GPIO_ACTIVE_LOW>;
	};
		regulator@1 {

	regulator-1 {
		compatible = "regulator-fixed";
			reg = <1>;
		regulator-name = "SATA0 power";
		regulator-min-microvolt = <5000000>;
		regulator-max-microvolt = <5000000>;
@@ -79,7 +73,6 @@
		regulator-boot-on;
		gpio = <&gpio1 18 GPIO_ACTIVE_HIGH>;
	};
	};

	gpio-keys {
		compatible = "gpio-keys";
Loading