aboutsummaryrefslogtreecommitdiff
path: root/src/ec/lenovo/h8
diff options
context:
space:
mode:
Diffstat (limited to 'src/ec/lenovo/h8')
-rw-r--r--src/ec/lenovo/h8/acpi/ec.asl2
-rw-r--r--src/ec/lenovo/h8/acpi/systemstatus.asl28
2 files changed, 15 insertions, 15 deletions
diff --git a/src/ec/lenovo/h8/acpi/ec.asl b/src/ec/lenovo/h8/acpi/ec.asl
index f08e1075a8..b4027336b7 100644
--- a/src/ec/lenovo/h8/acpi/ec.asl
+++ b/src/ec/lenovo/h8/acpi/ec.asl
@@ -70,7 +70,7 @@ Device(EC)
Return (ECMD)
}
- Method (LED, 1, NotSerialized)
+ Method (TLED, 1, NotSerialized)
{
Store(Arg0, LEDS)
}
diff --git a/src/ec/lenovo/h8/acpi/systemstatus.asl b/src/ec/lenovo/h8/acpi/systemstatus.asl
index d914e8b0b6..a7024ff10c 100644
--- a/src/ec/lenovo/h8/acpi/systemstatus.asl
+++ b/src/ec/lenovo/h8/acpi/systemstatus.asl
@@ -27,37 +27,37 @@ Scope (\_SI)
If (LEqual (Arg0, 0)) {
/* Indicator off */
- /* power LED off */
- \_SB.PCI0.LPCB.EC.LED(0x00)
- /* suspend LED off */
- \_SB.PCI0.LPCB.EC.LED(0x07)
+ /* power TLED off */
+ \_SB.PCI0.LPCB.EC.TLED(0x00)
+ /* suspend TLED off */
+ \_SB.PCI0.LPCB.EC.TLED(0x07)
}
If (LEqual (Arg0, 1)) {
/* working state */
- /* power LED on */
- \_SB.PCI0.LPCB.EC.LED(0x80)
- /* suspend LED off */
- \_SB.PCI0.LPCB.EC.LED(0x07)
+ /* power TLED on */
+ \_SB.PCI0.LPCB.EC.TLED(0x80)
+ /* suspend TLED off */
+ \_SB.PCI0.LPCB.EC.TLED(0x07)
}
If (LEqual (Arg0, 2)) {
/* waking state */
/* power LED on */
- \_SB.PCI0.LPCB.EC.LED(0x80)
+ \_SB.PCI0.LPCB.EC.TLED(0x80)
/* suspend LED blinking */
- \_SB.PCI0.LPCB.EC.LED(0xc7)
+ \_SB.PCI0.LPCB.EC.TLED(0xc7)
}
If (LEqual (Arg0, 3)) {
/* sleep state */
- /* power LED off */
- \_SB.PCI0.LPCB.EC.LED(0x00)
- /* suspend LED on */
- \_SB.PCI0.LPCB.EC.LED(0x87)
+ /* power TLED off */
+ \_SB.PCI0.LPCB.EC.TLED(0x00)
+ /* suspend TLED on */
+ \_SB.PCI0.LPCB.EC.TLED(0x87)
}
}
}