Skip to content

Commit

Permalink
Merge branch 'acpi-pci-hotplug' into acpi-hotplug
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafael J. Wysocki committed Nov 28, 2013
2 parents 2c22e65 + f26ca1d commit 8ff47aa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/pci/hotplug/acpiphp_glue.c
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,9 @@ static acpi_status register_slot(acpi_handle handle, u32 lvl, void *data,

status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr);
if (ACPI_FAILURE(status)) {
acpi_handle_warn(handle, "can't evaluate _ADR (%#x)\n", status);
if (status != AE_NOT_FOUND)
acpi_handle_warn(handle,
"can't evaluate _ADR (%#x)\n", status);
return AE_OK;
}

Expand Down

0 comments on commit 8ff47aa

Please sign in to comment.