summaryrefslogtreecommitdiff
path: root/src/ec/starlabs/merlin/acpi/lid.asl
blob: 0eaa2c5baee937747aeddb83e740605c075813fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: GPL-2.0-only */

Device (LID0)
{
	Name (_HID, EisaId ("PNP0C0D"))
	Method (_STA)
	{
		Return (0x0F)
	}
	Method (_LID, 0)
	{
		// 0x00 == Closed
		// 0x01 == Open
		Return (ECRD (RefOf (LSTE)))
	}
}