diff options
Diffstat (limited to 'drivers/acpi/acpi_memhotplug.c')
-rw-r--r-- | drivers/acpi/acpi_memhotplug.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/acpi/acpi_memhotplug.c b/drivers/acpi/acpi_memhotplug.c index 5652569b3762..0424326eae15 100644 --- a/drivers/acpi/acpi_memhotplug.c +++ b/drivers/acpi/acpi_memhotplug.c | |||
@@ -215,6 +215,7 @@ static int acpi_memory_enable_device(struct acpi_memory_device *mem_device) | |||
215 | { | 215 | { |
216 | int result, num_enabled = 0; | 216 | int result, num_enabled = 0; |
217 | struct acpi_memory_info *info; | 217 | struct acpi_memory_info *info; |
218 | int node = 0; | ||
218 | 219 | ||
219 | ACPI_FUNCTION_TRACE("acpi_memory_enable_device"); | 220 | ACPI_FUNCTION_TRACE("acpi_memory_enable_device"); |
220 | 221 | ||
@@ -245,7 +246,7 @@ static int acpi_memory_enable_device(struct acpi_memory_device *mem_device) | |||
245 | continue; | 246 | continue; |
246 | } | 247 | } |
247 | 248 | ||
248 | result = add_memory(info->start_addr, info->length); | 249 | result = add_memory(node, info->start_addr, info->length); |
249 | if (result) | 250 | if (result) |
250 | continue; | 251 | continue; |
251 | info->enabled = 1; | 252 | info->enabled = 1; |