Skip to content

Commit bc4d413

Browse files
Mario Limonciellorafaeljw
authored andcommitted
ACPICA: Recognize the Windows 10 version 1607 and 1703 OSI strings
ACPICA commit 35a4a3ea723b3066f575e63e5f0116f7ce65e713 The public Microsoft document listing recognized OSI strings [1] shows that these two strings were introduced. version 1607 / Anniversary Update / "Redstone 1" version 1703 / Creators Update / "Redstone 2" [1] http://download.microsoft.com/download/7/e/7/7e7662cf-cbea-470b-a97e-ce7ce0d98dc2/winacpi_osi.docx Link: acpica/acpica@35a4a3ea Signed-off-by: Mario Limonciello <[email protected]> Signed-off-by: Bob Moore <[email protected]> Signed-off-by: Erik Schmauss <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 87cdece commit bc4d413

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

drivers/acpi/acpica/utosi.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ static struct acpi_interface_info acpi_default_supported_interfaces[] = {
101101
{"Windows 2012", NULL, 0, ACPI_OSI_WIN_8}, /* Windows 8 and Server 2012 - Added 08/2012 */
102102
{"Windows 2013", NULL, 0, ACPI_OSI_WIN_8}, /* Windows 8.1 and Server 2012 R2 - Added 01/2014 */
103103
{"Windows 2015", NULL, 0, ACPI_OSI_WIN_10}, /* Windows 10 - Added 03/2015 */
104+
{"Windows 2016", NULL, 0, ACPI_OSI_WIN_10_RS1}, /* Windows 10 version 1607 - Added 12/2017 */
105+
{"Windows 2017", NULL, 0, ACPI_OSI_WIN_10_RS2}, /* Windows 10 version 1703 - Added 12/2017 */
104106

105107
/* Feature Group Strings */
106108

include/acpi/actypes.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1301,6 +1301,8 @@ typedef enum {
13011301
#define ACPI_OSI_WIN_7 0x0B
13021302
#define ACPI_OSI_WIN_8 0x0C
13031303
#define ACPI_OSI_WIN_10 0x0D
1304+
#define ACPI_OSI_WIN_10_RS1 0x0E
1305+
#define ACPI_OSI_WIN_10_RS2 0x0F
13041306

13051307
/* Definitions of getopt */
13061308

0 commit comments

Comments
 (0)