Author: svens Date: Mon Mar 14 16:23:44 2011 New Revision: 6446 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6446
Log: X60: LPC bus is LPCB, not LPC Signed-off-by: Sven Schnelle <[email protected]> Acked-by: Sven Schnelle <[email protected]> Modified: trunk/src/mainboard/lenovo/x60/acpi/systemstatus.asl Modified: trunk/src/mainboard/lenovo/x60/acpi/systemstatus.asl ============================================================================== --- trunk/src/mainboard/lenovo/x60/acpi/systemstatus.asl Mon Mar 14 15:26:41 2011 (r6445) +++ trunk/src/mainboard/lenovo/x60/acpi/systemstatus.asl Mon Mar 14 16:23:44 2011 (r6446) @@ -28,36 +28,36 @@ /* 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) } -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

