From: Thomas Renninger Date: Fri, 2 Dec 2005 20:39:57 +0000 (+0000) Subject: [PATCH] ACPI: fix HP nx8220 boot hang regression X-Git-Tag: v2.6.14.4~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1493a189c8dcbd276144b958f9c4cb4bd25940c;p=thirdparty%2Fkernel%2Fstable.git [PATCH] ACPI: fix HP nx8220 boot hang regression [ACPI] fix HP nx8220 boot hang regression This patch reverts the acpi_bus_find_driver() return value check that came in via the PCI tree via 3fb02738b0fd36f47710a2bf207129efd2f5daa2 [PATCH] acpi bridge hotadd: Allow ACPI .add and .start operations to be done independently This particular change broke booting of some HP/Compaq laptops unless acpi=noirq is used. http://bugzilla.kernel.org/show_bug.cgi?id=5221 https://bugzilla.novell.com/show_bug.cgi?id=116763 Signed-off-by: Thomas Renninger Cc: Rajesh Shah Signed-off-by: Len Brown Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c index c6db591479de3..681eb193c2152 100644 --- a/drivers/acpi/scan.c +++ b/drivers/acpi/scan.c @@ -1111,7 +1111,7 @@ acpi_add_single_object(struct acpi_device **child, * * TBD: Assumes LDM provides driver hot-plug capability. */ - result = acpi_bus_find_driver(device); + acpi_bus_find_driver(device); end: if (!result)