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

Device (LID0)
{
	Name (_HID, EisaId ("PNP0C0D"))
	Name (_UID, 1)
	Name (_STA, 0xf)

	Method (_LID, 0, NotSerialized)
	{
		\LIDS = R (P1LC)
		Return (\LIDS)
	}
}