mb/lenovo/g505s/acpi: Use Printf() for debug prints
Change-Id: Ibc775cda61134523dc03a073676b9d035ea48472 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60420 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
This commit is contained in:
parent
a8b0c1a024
commit
4878940de3
|
@ -15,7 +15,7 @@ Scope(\_GPE) { /* Start Scope GPE */
|
|||
|
||||
/* USB controller PME# */
|
||||
Method(_L0B) {
|
||||
Debug = "USB PME"
|
||||
Printf ("USB PME")
|
||||
/* Notify devices of wake event */
|
||||
Notify(\_SB.PCI0.UOH1, 0x02)
|
||||
Notify(\_SB.PCI0.UOH2, 0x02)
|
||||
|
@ -37,7 +37,7 @@ Scope(\_GPE) { /* Start Scope GPE */
|
|||
|
||||
/* Lid switch opened or closed */
|
||||
Method(_L16) {
|
||||
Debug = "Lid status changed"
|
||||
Printf ("Lid status changed")
|
||||
/* Flip trigger polarity */
|
||||
LPOL = ~LPOL
|
||||
/* Notify lid object of status change */
|
||||
|
@ -46,7 +46,7 @@ Scope(\_GPE) { /* Start Scope GPE */
|
|||
|
||||
/* GPIO0 or GEvent8 event */
|
||||
Method(_L18) {
|
||||
Debug = "PCI bridge wake event"
|
||||
Printf ("PCI bridge wake event")
|
||||
/* Notify PCI bridges of wake event */
|
||||
Notify(\_SB.PCI0.PBR4, 0x02)
|
||||
Notify(\_SB.PCI0.PBR5, 0x02)
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
Method (PNOT)
|
||||
{
|
||||
Debug = "Received PNOT call (probably from EC)"
|
||||
Printf ("Received PNOT call (probably from EC)")
|
||||
/* TODO: Implement this */
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue