This reverts commit 1f81af52a4
("mb/system76: Add custom backlight
levels for Intel GMA").
Defaulting to 40% can make the screen hard to read as System76's
firmware setup uses white text on a gray background.
Change-Id: I13ab3797319c4db6e800737a3f4e4344e3b588f3
Signed-off-by: Tim Crawford <tcrawford@system76.com>
21 lines
366 B
Plaintext
21 lines
366 B
Plaintext
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#if CONFIG(DRIVERS_GFX_NVIDIA)
|
|
#include <variant/gpio.h>
|
|
#endif
|
|
|
|
#define EC_GPE_SCI 0x6E
|
|
#define EC_GPE_SWI 0x6B
|
|
#include <ec/system76/ec/acpi/ec.asl>
|
|
|
|
Scope (\_SB) {
|
|
#include "sleep.asl"
|
|
Scope (PCI0) {
|
|
#if CONFIG(DRIVERS_GFX_NVIDIA)
|
|
Scope (PEG2) {
|
|
#include <drivers/gfx/nvidia/acpi/tigerlake.asl>
|
|
}
|
|
#endif
|
|
}
|
|
}
|