summaryrefslogtreecommitdiffstats
path: root/src/ec/roda/it8518/acpi/ac.asl
blob: dfddba647b12b568499aa1b313641df51b076f09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

//SCOPE EC0

Device (AC)
{
	Name (_HID, "ACPI0003")
	Name (_PCL, Package () { \_SB })

	Method (_PSR, 0, NotSerialized)  // _PSR: Power Source
	{
		Store ("-----> AC: _PSR", Debug)
		Store ("<----- AC: _PSR", Debug)
		Return (PWRS)
	}
}