aboutsummaryrefslogtreecommitdiff
path: root/src/ec/roda/it8518/acpi/lid.asl
blob: 1f9b35a336623ebe3dc67f40bee7d6c135a70f22 (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. */

//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)
	}
}