diff options
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/acpica/exregion.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/exregion.c b/drivers/acpi/acpica/exregion.c index 0ca217ec43b8..2b8cae62529a 100644 --- a/drivers/acpi/acpica/exregion.c +++ b/drivers/acpi/acpica/exregion.c | |||
@@ -177,7 +177,8 @@ acpi_ex_system_memory_space_handler(u32 function, | |||
177 | 177 | ||
178 | /* Create a new mapping starting at the address given */ | 178 | /* Create a new mapping starting at the address given */ |
179 | 179 | ||
180 | mem_info->mapped_logical_address = acpi_os_map_memory((acpi_physical_address) address, map_length); | 180 | mem_info->mapped_logical_address = |
181 | acpi_os_map_memory(address, map_length); | ||
181 | if (!mem_info->mapped_logical_address) { | 182 | if (!mem_info->mapped_logical_address) { |
182 | ACPI_ERROR((AE_INFO, | 183 | ACPI_ERROR((AE_INFO, |
183 | "Could not map memory at 0x%8.8X%8.8X, size %u", | 184 | "Could not map memory at 0x%8.8X%8.8X, size %u", |