aboutsummaryrefslogtreecommitdiff
path: root/src/ec/roda/it8518/acpi/lid.asl
blob: c30bb4dee59eadd7185e7d0b2e46a170c3aa9a06 (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
	{
		Store ("-----> LID0: _LID", Debug)
		Store ("<----- LID0: _LID", Debug)
		Return (LIDS)
	}
}