diff options
-rw-r--r-- | drivers/acpi/acpi_memhotplug.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/acpi/acpi_memhotplug.c b/drivers/acpi/acpi_memhotplug.c index b0d4b147b19e..1dda370f402b 100644 --- a/drivers/acpi/acpi_memhotplug.c +++ b/drivers/acpi/acpi_memhotplug.c | |||
@@ -484,10 +484,8 @@ acpi_memory_register_notify_handler(acpi_handle handle, | |||
484 | 484 | ||
485 | 485 | ||
486 | status = is_memory_device(handle); | 486 | status = is_memory_device(handle); |
487 | if (ACPI_FAILURE(status)){ | 487 | if (ACPI_FAILURE(status)) |
488 | ACPI_EXCEPTION((AE_INFO, status, "handle is no memory device")); | ||
489 | return AE_OK; /* continue */ | 488 | return AE_OK; /* continue */ |
490 | } | ||
491 | 489 | ||
492 | status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY, | 490 | status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY, |
493 | acpi_memory_device_notify, NULL); | 491 | acpi_memory_device_notify, NULL); |
@@ -503,10 +501,8 @@ acpi_memory_deregister_notify_handler(acpi_handle handle, | |||
503 | 501 | ||
504 | 502 | ||
505 | status = is_memory_device(handle); | 503 | status = is_memory_device(handle); |
506 | if (ACPI_FAILURE(status)){ | 504 | if (ACPI_FAILURE(status)) |
507 | ACPI_EXCEPTION((AE_INFO, status, "handle is no memory device")); | ||
508 | return AE_OK; /* continue */ | 505 | return AE_OK; /* continue */ |
509 | } | ||
510 | 506 | ||
511 | status = acpi_remove_notify_handler(handle, | 507 | status = acpi_remove_notify_handler(handle, |
512 | ACPI_SYSTEM_NOTIFY, | 508 | ACPI_SYSTEM_NOTIFY, |