summaryrefslogtreecommitdiff
path: root/src/ec/roda/it8518/acpi/lid.asl
blob: 61eda559268e7ab0bb04b58e5f93eb9125910195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0-only */

//SCOPE EC0

Device (LID)
{
	Name (_HID, EisaId ("PNP0C0D"))  // _HID: Hardware ID
	Method (_LID, 0, NotSerialized)  // _LID: Lid Status
	{
		Printf ("-----> LID0: _LID")
		Printf ("<----- LID0: _LID")
		Return (LIDS)
	}
}