Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e7c88159 authored by Linus Walleij's avatar Linus Walleij
Browse files

ARM: dts: Fix DTC warnings



The DTC was warning a lot about unit names etc, I think I fixed
them all. Stopping to include skeleton.dtsi fixes the last one.

Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 56cb2d8e
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
	#address-cells = <1>;
	#size-cells = <1>;

	memory {
	memory@0 {
		/* 128 MB SDRAM in 2 x Hynix HY5DU121622DTP-D43 */
		device_type = "memory";
		reg = <0x00000000 0x8000000>;
@@ -26,8 +26,7 @@

	gpio_keys {
		compatible = "gpio-keys";
		#address-cells = <1>;
		#size-cells = <0>;

		button-esc {
			debounce-interval = <50>;
			wakeup-source;
+2 −3
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
	#address-cells = <1>;
	#size-cells = <1>;

	memory {
	memory@0 {
		/* 64 MB SDRAM in a Nanya NT5DS32M16BS-6K package */
		device_type = "memory";
		reg = <0x00000000 0x4000000>;
@@ -32,8 +32,7 @@

	gpio_keys {
		compatible = "gpio-keys";
		#address-cells = <1>;
		#size-cells = <0>;

		button-esc {
			debounce-interval = <50>;
			wakeup-source;
+5 −7
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
	#address-cells = <1>;
	#size-cells = <1>;

	memory { /* 128 MB */
	memory@0 { /* 128 MB */
		device_type = "memory";
		reg = <0x00000000 0x8000000>;
	};
@@ -26,10 +26,8 @@

	gpio_keys {
		compatible = "gpio-keys";
		#address-cells = <1>;
		#size-cells = <0>;

		button@29 {
		button-setup {
			debounce-interval = <50>;
			wakeup-source;
			linux,code = <KEY_SETUP>;
@@ -37,7 +35,7 @@
			/* Conflict with TVC */
			gpios = <&gpio1 29 GPIO_ACTIVE_LOW>;
		};
		button@31 {
		button-restart {
			debounce-interval = <50>;
			wakeup-source;
			linux,code = <KEY_RESTART>;
@@ -49,13 +47,13 @@

	leds {
		compatible = "gpio-leds";
		led@28 {
		led-orange-hdd {
			label = "nas4220b:orange:hdd";
			/* Conflict with TVC */
			gpios = <&gpio1 28 GPIO_ACTIVE_HIGH>;
			default-state = "on";
		};
		led@30 {
		led-green-os {
			label = "nas4220b:green:os";
			/* Conflict with TVC */
			gpios = <&gpio1 30 GPIO_ACTIVE_HIGH>;
+4 −6
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
	#address-cells = <1>;
	#size-cells = <1>;

	memory { /* 128 MB */
	memory@0 { /* 128 MB */
		device_type = "memory";
		reg = <0x00000000 0x8000000>;
	};
@@ -26,10 +26,8 @@

	gpio_keys {
		compatible = "gpio-keys";
		#address-cells = <1>;
		#size-cells = <0>;

		button@28 {
		button-setup {
			debounce-interval = <50>;
			wakeup-source;
			linux,code = <KEY_SETUP>;
@@ -41,14 +39,14 @@

	leds {
		compatible = "gpio-leds";
		led@7 {
		led-gsm {
			/* FIXME: add the LED color */
			label = "rut1xx::gsm";
			/* Conflict with ICE */
			gpios = <&gpio0 7 GPIO_ACTIVE_HIGH>;
			default-state = "on";
		};
		led@31 {
		led-power {
			/* FIXME: add the LED color */
			label = "rut1xx::power";
			/* Conflict with NAND CE0 */
+4 −6
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
	#address-cells = <1>;
	#size-cells = <1>;

	memory { /* 128 MB */
	memory@0 { /* 128 MB */
		device_type = "memory";
		reg = <0x00000000 0x8000000>;
	};
@@ -26,10 +26,8 @@

	gpio_keys {
		compatible = "gpio-keys";
		#address-cells = <1>;
		#size-cells = <0>;

		button@18 {
		button-setup {
			debounce-interval = <50>;
			wakeup-source;
			linux,code = <KEY_SETUP>;
@@ -41,14 +39,14 @@

	leds {
		compatible = "gpio-leds";
		led@20 {
		led-green-info {
			label = "sq201:green:info";
			/* Conflict with parallel flash */
			gpios = <&gpio0 20 GPIO_ACTIVE_HIGH>;
			default-state = "on";
			linux,default-trigger = "heartbeat";
		};
		led@31 {
		led-green-usb {
			label = "sq201:green:usb";
			/* Conflict with parallel and NAND flash */
			gpios = <&gpio0 31 GPIO_ACTIVE_HIGH>;
Loading