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

Field(ERAM, ByteAcc, NoLock, Preserve)
{
		Offset (0x06),
			SNDS, 8		/* Write to this register to generate sound */

}

Method(BEEP, 1, NotSerialized)
{
	Store (Arg0, SNDS)
}