Don't force an immediate probe/attach for all devices when compiled with

ACPI_DEBUG.  This upset the ordering that acpi_probe_order() was meant to
provide, causing devices to attach before the sysresource object.  This
debugging feature has been unnecessary for a while so just remove it.

Testing by:	marcel
This commit is contained in:
Nate Lawson 2004-07-26 06:04:35 +00:00
parent d882cf921f
commit 3fe12180a5

View File

@ -1233,9 +1233,6 @@ acpi_probe_order(ACPI_HANDLE handle, int *order)
ret = 1;
}
/* Always probe/attach immediately if we're debugging. */
ACPI_DEBUG_EXEC(ret = 1);
return (ret);
}