diff options
Diffstat (limited to 'sys/dev/acpi')
-rw-r--r-- | sys/dev/acpi/acpireg.h | 3 | ||||
-rw-r--r-- | sys/dev/acpi/acpithinkpad.c | 7 |
2 files changed, 7 insertions, 3 deletions
diff --git a/sys/dev/acpi/acpireg.h b/sys/dev/acpi/acpireg.h index 1bef5c4fba4..75d20098fc0 100644 --- a/sys/dev/acpi/acpireg.h +++ b/sys/dev/acpi/acpireg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: acpireg.h,v 1.36 2016/07/10 20:36:41 kettenis Exp $ */ +/* $OpenBSD: acpireg.h,v 1.37 2017/02/25 19:15:09 jcs Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * Copyright (c) 2005 Marco Peereboom <marco@openbsd.org> @@ -766,6 +766,7 @@ struct acpi_ivrs { #define ACPI_DEV_ASUS1 "ATK0100" /* ASUS Special Device */ #define ACPI_DEV_IBM "IBM0068" /* IBM ThinkPad support */ #define ACPI_DEV_LENOVO "LEN0068" /* Lenovo ThinkPad support */ +#define ACPI_DEV_LENOVO2 "LEN0268" /* Lenovo ThinkPad support */ #define ACPI_DEV_ASUSAIBOOSTER "ATK0110" /* ASUSTeK AI Booster */ #define ACPI_DEV_TOSHIBA_LIBRETTO "TOS6200" /* Toshiba Libretto support */ #define ACPI_DEV_TOSHIBA_DYNABOOK "TOS6207" /* Toshiba Dynabook support */ diff --git a/sys/dev/acpi/acpithinkpad.c b/sys/dev/acpi/acpithinkpad.c index 87c0e158981..b663dee9815 100644 --- a/sys/dev/acpi/acpithinkpad.c +++ b/sys/dev/acpi/acpithinkpad.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpithinkpad.c,v 1.54 2017/02/07 05:18:07 jsg Exp $ */ +/* $OpenBSD: acpithinkpad.c,v 1.55 2017/02/25 19:15:09 jcs Exp $ */ /* * Copyright (c) 2008 joshua stein <jcs@openbsd.org> * @@ -181,7 +181,10 @@ struct cfdriver acpithinkpad_cd = { }; const char *acpithinkpad_hids[] = { - ACPI_DEV_IBM, ACPI_DEV_LENOVO, 0 + ACPI_DEV_IBM, + ACPI_DEV_LENOVO, + ACPI_DEV_LENOVO2, + 0 }; int |