Files
system76-coreboot/src/ec/roda/it8518/acpi/ac.asl
Felix Singer 98a413257c ec/roda/it8518/acpi: Make use of Printf("...")
Replace `Store("...", Debug)` with `Printf("...")`.

Built roda/rw11 with `BUILD_TIMELESS=1` and coreboot.rom remains the
same.

Change-Id: Ie1a1f7320ef2850e4f861b1426240e6940036844
Signed-off-by: Felix Singer <felix.singer@secunet.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56602
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
2021-07-28 13:46:12 +00:00

17 lines
270 B
Plaintext

/* SPDX-License-Identifier: GPL-2.0-only */
//SCOPE EC0
Device (AC)
{
Name (_HID, "ACPI0003")
Name (_PCL, Package () { \_SB })
Method (_PSR, 0, NotSerialized) // _PSR: Power Source
{
Printf ("-----> AC: _PSR")
Printf ("<----- AC: _PSR")
Return (PWRS)
}
}