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
This commit is contained in:
Sven Schnelle 2011-03-14 15:23:44 +00:00
parent 91c31dac0c
commit 07ca1c47b2
1 changed files with 8 additions and 8 deletions

View File

@ -28,36 +28,36 @@ Scope (\_SI)
/* Indicator off */ /* Indicator off */
/* power LED off */ /* power LED off */
\_SB.PCI0.LPC.EC.LED(0x00) \_SB.PCI0.LPCB.EC.LED(0x00)
/* suspend LED off */ /* suspend LED off */
\_SB.PCI0.LPC.EC.LED(0x07) \_SB.PCI0.LPCB.EC.LED(0x07)
} }
If (LEqual (Arg0, 1)) { If (LEqual (Arg0, 1)) {
/* working state */ /* working state */
/* power LED on */ /* power LED on */
\_SB.PCI0.LPC.EC.LED(0x80) \_SB.PCI0.LPCB.EC.LED(0x80)
/* suspend LED off */ /* suspend LED off */
\_SB.PCI0.LPC.EC.LED(0x07) \_SB.PCI0.LPCB.EC.LED(0x07)
} }
If (LEqual (Arg0, 2)) { If (LEqual (Arg0, 2)) {
/* waking state */ /* waking state */
/* power LED om */ /* power LED om */
\_SB.PCI0.LPC.EC.LED(0x80) \_SB.PCI0.LPCB.EC.LED(0x80)
/* suspend LED blinking */ /* suspend LED blinking */
\_SB.PCI0.LPC.EC.LED(0xc7) \_SB.PCI0.LPCB.EC.LED(0xc7)
} }
If (LEqual (Arg0, 3)) { If (LEqual (Arg0, 3)) {
/* sleep state */ /* sleep state */
/* power LED off */ /* power LED off */
\_SB.PCI0.LPC.EC.LED(0x00) \_SB.PCI0.LPCB.EC.LED(0x00)
/* suspend LED on */ /* suspend LED on */
\_SB.PCI0.LPC.EC.LED(0x87) \_SB.PCI0.LPCB.EC.LED(0x87)
} }