summaryrefslogtreecommitdiffstats
path: root/src/ec/google/wilco/acpi/lid.asl
blob: 1724b207d7796735fdedd258cec57e5e4c6b4b52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

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

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