summaryrefslogtreecommitdiffstats
path: root/src/ec/google/wilco/acpi/lid.asl
blob: 3fae71f5a5e1ee14f8a8177769c50a17bdf9dd1c (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)
	{
		Store (R (P1LC), \LIDS)
		Return (\LIDS)
	}
}