mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 13:11:40 +00:00
ACPICA: Add support for FunctionalFixedHW in acpi_ut_get_region_name
Was missing this region type. Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Lin Ming <ming.m.lin@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
9ad19ac456
commit
47863b9cbe
@ -179,6 +179,8 @@ char *acpi_ut_get_region_name(u8 space_id)
|
||||
|
||||
if (space_id >= ACPI_USER_REGION_BEGIN) {
|
||||
return ("UserDefinedRegion");
|
||||
} else if (space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) {
|
||||
return ("FunctionalFixedHW");
|
||||
} else if (space_id >= ACPI_NUM_PREDEFINED_REGIONS) {
|
||||
return ("InvalidSpaceId");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user