File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,8 @@ static acpi_adr_space_type acpi_gbl_space_id_list[] = {
51
51
ACPI_ADR_SPACE_IPMI ,
52
52
ACPI_ADR_SPACE_GPIO ,
53
53
ACPI_ADR_SPACE_GSBUS ,
54
+ ACPI_ADR_SPACE_PLATFORM_COMM ,
55
+ ACPI_ADR_SPACE_PLATFORM_RT ,
54
56
ACPI_ADR_SPACE_DATA_TABLE ,
55
57
ACPI_ADR_SPACE_FIXED_HARDWARE
56
58
};
Original file line number Diff line number Diff line change @@ -78,7 +78,8 @@ const char *acpi_gbl_region_types[ACPI_NUM_PREDEFINED_REGIONS] = {
78
78
"IPMI" , /* 0x07 */
79
79
"GeneralPurposeIo" , /* 0x08 */
80
80
"GenericSerialBus" , /* 0x09 */
81
- "PCC" /* 0x0A */
81
+ "PCC" , /* 0x0A */
82
+ "PlatformRtMechanism" /* 0x0B */
82
83
};
83
84
84
85
const char * acpi_ut_get_region_name (u8 space_id )
Original file line number Diff line number Diff line change @@ -815,8 +815,9 @@ typedef u8 acpi_adr_space_type;
815
815
#define ACPI_ADR_SPACE_GPIO (acpi_adr_space_type) 8
816
816
#define ACPI_ADR_SPACE_GSBUS (acpi_adr_space_type) 9
817
817
#define ACPI_ADR_SPACE_PLATFORM_COMM (acpi_adr_space_type) 10
818
+ #define ACPI_ADR_SPACE_PLATFORM_RT (acpi_adr_space_type) 11
818
819
819
- #define ACPI_NUM_PREDEFINED_REGIONS 11
820
+ #define ACPI_NUM_PREDEFINED_REGIONS 12
820
821
821
822
/*
822
823
* Special Address Spaces
You can’t perform that action at this time.
0 commit comments