浏览代码

Merge branch 'lpc32xx/dts' of git://git.antcom.de/linux-2.6 into next/dt

From Roland Stigge. Pulling in one bugfix to the lpc32xx DT conversion.

* 'lpc32xx/dts' of git://git.antcom.de/linux-2.6:
  ARM: LPC32xx: LED fix in PHY3250 DTS file
Olof Johansson 13 年之前
父节点
当前提交
99261fbad0
共有 1 个文件被更改,包括 5 次插入7 次删除
  1. 5 7
      arch/arm/boot/dts/phy3250.dts

+ 5 - 7
arch/arm/boot/dts/phy3250.dts

@@ -189,16 +189,14 @@
 	leds {
 	leds {
 		compatible = "gpio-leds";
 		compatible = "gpio-leds";
 
 
-		led0 {
-			gpios = <&gpio 5 1 1>; /* GPO_P3 1, GPIO 80, active low */
-			linux,default-trigger = "heartbeat";
+		led0 { /* red */
+			gpios = <&gpio 5 1 0>; /* GPO_P3 1, GPIO 80, active high */
 			default-state = "off";
 			default-state = "off";
 		};
 		};
 
 
-		led1 {
-			gpios = <&gpio 5 14 1>; /* GPO_P3 14, GPIO 93, active low */
-			linux,default-trigger = "timer";
-			default-state = "off";
+		led1 { /* green */
+			gpios = <&gpio 5 14 0>; /* GPO_P3 14, GPIO 93, active high */
+			linux,default-trigger = "heartbeat";
 		};
 		};
 	};
 	};
 };
 };