summaryrefslogtreecommitdiffstats
path: root/src/ec/roda/it8518/acpi/ac.asl
blob: ec8c704074dff37eac8384db2a3f78090880140f (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
	{
		Printf ("-----> AC: _PSR")
		Printf ("<----- AC: _PSR")
		Return (PWRS)
	}
}