summaryrefslogtreecommitdiffstats
path: root/src/mainboard/lenovo/t60/acpi/video.asl
blob: 294ea2e13b29d67a83825fda20d7b2e37da42350 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include "smi.h"

Scope (\)
{
	Method(BRTD, 0, NotSerialized)
	{
		Trap(SMI_BRIGHTNESS_DOWN)
		\_SB.PCI0.GFX0.DECB()
	}

	Method(BRTU, 0, NotSerialized)
	{
		Trap(SMI_BRIGHTNESS_UP)
		\_SB.PCI0.GFX0.INCB()
	}
}