tangled
alpha
login
or
join now
tjh.dev
/
kernel
1
fork
atom
Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1
fork
atom
overview
issues
pulls
pipelines
Merge branch 'acpi-pci-hotplug' into acpi-hotplug
Rafael J. Wysocki
12 years ago
8ff47aaf
2c22e652
+3
-1
1 changed file
expand all
collapse all
unified
split
drivers
pci
hotplug
acpiphp_glue.c
+3
-1
drivers/pci/hotplug/acpiphp_glue.c
reviewed
···
279
279
280
280
status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr);
281
281
if (ACPI_FAILURE(status)) {
282
282
-
acpi_handle_warn(handle, "can't evaluate _ADR (%#x)\n", status);
282
282
+
if (status != AE_NOT_FOUND)
283
283
+
acpi_handle_warn(handle,
284
284
+
"can't evaluate _ADR (%#x)\n", status);
283
285
return AE_OK;
284
286
}
285
287