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:
Felix Singer
2021-12-28 16:54:33 +01:00
parent a8b0c1a024
commit 4878940de3
2 changed files with 4 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ Scope(\_GPE) { /* Start Scope GPE */
/* USB controller PME# */ /* USB controller PME# */
Method(_L0B) { Method(_L0B) {
Debug = "USB PME" Printf ("USB PME")
/* Notify devices of wake event */ /* Notify devices of wake event */
Notify(\_SB.PCI0.UOH1, 0x02) Notify(\_SB.PCI0.UOH1, 0x02)
Notify(\_SB.PCI0.UOH2, 0x02) Notify(\_SB.PCI0.UOH2, 0x02)
@@ -37,7 +37,7 @@ Scope(\_GPE) { /* Start Scope GPE */
/* Lid switch opened or closed */ /* Lid switch opened or closed */
Method(_L16) { Method(_L16) {
Debug = "Lid status changed" Printf ("Lid status changed")
/* Flip trigger polarity */ /* Flip trigger polarity */
LPOL = ~LPOL LPOL = ~LPOL
/* Notify lid object of status change */ /* Notify lid object of status change */
@@ -46,7 +46,7 @@ Scope(\_GPE) { /* Start Scope GPE */
/* GPIO0 or GEvent8 event */ /* GPIO0 or GEvent8 event */
Method(_L18) { Method(_L18) {
Debug = "PCI bridge wake event" Printf ("PCI bridge wake event")
/* Notify PCI bridges of wake event */ /* Notify PCI bridges of wake event */
Notify(\_SB.PCI0.PBR4, 0x02) Notify(\_SB.PCI0.PBR4, 0x02)
Notify(\_SB.PCI0.PBR5, 0x02) Notify(\_SB.PCI0.PBR5, 0x02)

View File

@@ -37,7 +37,7 @@
*/ */
Method (PNOT) Method (PNOT)
{ {
Debug = "Received PNOT call (probably from EC)" Printf ("Received PNOT call (probably from EC)")
/* TODO: Implement this */ /* TODO: Implement this */
} }