summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Schnelle <svens@stackframe.org>2011-03-14 15:23:44 +0000
committerSven Schnelle <svens@stackframe.org>2011-03-14 15:23:44 +0000
commit07ca1c47b20e968ff4dce64192f0b10adeb0c488 (patch)
treed520249bcd5d5fffdef9e03cca283cce50e43e88
parent91c31dac0c4a2c1c865d2379aa74237389353c22 (diff)
downloadcoreboot-07ca1c47b20e968ff4dce64192f0b10adeb0c488.tar.gz
coreboot-07ca1c47b20e968ff4dce64192f0b10adeb0c488.tar.bz2
coreboot-07ca1c47b20e968ff4dce64192f0b10adeb0c488.zip
X60: LPC bus is LPCB, not LPC
Signed-off-by: Sven Schnelle <svens@stackframe.org> Acked-by: Sven Schnelle <svens@stackframe.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6446 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r--src/mainboard/lenovo/x60/acpi/systemstatus.asl16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mainboard/lenovo/x60/acpi/systemstatus.asl b/src/mainboard/lenovo/x60/acpi/systemstatus.asl
index fb3fa2659ac8..161be083a0ae 100644
--- a/src/mainboard/lenovo/x60/acpi/systemstatus.asl
+++ b/src/mainboard/lenovo/x60/acpi/systemstatus.asl
@@ -28,36 +28,36 @@ Scope (\_SI)
/* Indicator off */
/* power LED off */
- \_SB.PCI0.LPC.EC.LED(0x00)
+ \_SB.PCI0.LPCB.EC.LED(0x00)
/* suspend LED off */
- \_SB.PCI0.LPC.EC.LED(0x07)
+ \_SB.PCI0.LPCB.EC.LED(0x07)
}
If (LEqual (Arg0, 1)) {
/* working state */
/* power LED on */
- \_SB.PCI0.LPC.EC.LED(0x80)
+ \_SB.PCI0.LPCB.EC.LED(0x80)
/* suspend LED off */
- \_SB.PCI0.LPC.EC.LED(0x07)
+ \_SB.PCI0.LPCB.EC.LED(0x07)
}
If (LEqual (Arg0, 2)) {
/* waking state */
/* power LED om */
- \_SB.PCI0.LPC.EC.LED(0x80)
+ \_SB.PCI0.LPCB.EC.LED(0x80)
/* suspend LED blinking */
- \_SB.PCI0.LPC.EC.LED(0xc7)
+ \_SB.PCI0.LPCB.EC.LED(0xc7)
}
If (LEqual (Arg0, 3)) {
/* sleep state */
/* power LED off */
- \_SB.PCI0.LPC.EC.LED(0x00)
+ \_SB.PCI0.LPCB.EC.LED(0x00)
/* suspend LED on */
- \_SB.PCI0.LPC.EC.LED(0x87)
+ \_SB.PCI0.LPCB.EC.LED(0x87)
}