From 62b2531c2f8b01e5619b6e2cde4342bd26362b64 Mon Sep 17 00:00:00 2001 From: jsg Date: Sun, 2 Apr 2023 11:32:48 +0000 Subject: [PATCH] add Windows 11 _OSI strings ok mlarkin@ --- sys/dev/acpi/dsdt.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sys/dev/acpi/dsdt.h b/sys/dev/acpi/dsdt.h index c2f91d22b63..41633ced748 100644 --- a/sys/dev/acpi/dsdt.h +++ b/sys/dev/acpi/dsdt.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dsdt.h,v 1.79 2021/03/10 21:49:55 patrick Exp $ */ +/* $OpenBSD: dsdt.h,v 1.80 2023/04/02 11:32:48 jsg Exp $ */ /* * Copyright (c) 2005 Marco Peereboom * @@ -387,6 +387,8 @@ enum acpi_osi { OSI_WIN_10_1809, OSI_WIN_10_1903, OSI_WIN_10_2004, + OSI_WIN_11, + OSI_WIN_11_22H2 }; #define AML_VALID_OSI \ @@ -413,7 +415,9 @@ enum acpi_osi { "Windows 2018", \ "Windows 2018.2", \ "Windows 2019", \ - "Windows 2020" + "Windows 2020", \ + "Windows 2021", \ + "Windows 2022" extern enum acpi_osi acpi_max_osi; /* most recent Win version FW knows */ -- 2.20.1