From 2e63992f34de37cdd39a2d458f68bc93c9b37f57 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Fri, 24 Dec 2004 22:16:06 +0000 Subject: [PATCH] Note when we're done probing PNP. There's been several reports over the years of hangs that turned out to be in the PNP code. Add an explicit end marker so such hangs are more apparent. --- sys/isa/pnp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/isa/pnp.c b/sys/isa/pnp.c index ede9eab70fc..552813174d1 100644 --- a/sys/isa/pnp.c +++ b/sys/isa/pnp.c @@ -800,6 +800,8 @@ pnp_identify(driver_t *driver, device_t parent) if (num_pnp_devs) break; } + if (bootverbose) + printf("PNP Identify complete\n"); } static device_method_t pnp_methods[] = {