summaryrefslogtreecommitdiffstats
path: root/src/ec/roda/it8518/acpi/ac.asl
blob: c46bf205d8c8ae1b2b1bab556f88d870a83cbacb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 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
	{
		Store ("-----> AC: _PSR", Debug)
		Store ("<----- AC: _PSR", Debug)
		Return (PWRS)
	}
}