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>
17 lines
270 B
Plaintext
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)
|
|
}
|
|
}
|