Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge branch 'acpi-pci-hotplug' into acpi-hotplug

+3 -1
+3 -1
drivers/pci/hotplug/acpiphp_glue.c
··· 279 279 280 280 status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr); 281 281 if (ACPI_FAILURE(status)) { 282 - acpi_handle_warn(handle, "can't evaluate _ADR (%#x)\n", status); 282 + if (status != AE_NOT_FOUND) 283 + acpi_handle_warn(handle, 284 + "can't evaluate _ADR (%#x)\n", status); 283 285 return AE_OK; 284 286 } 285 287