From: Michael Brown Date: Fri, 15 Apr 2005 14:31:08 +0000 (+0000) Subject: Added debugging messages for activation/deactivation of logical devices. X-Git-Tag: v0.9.3~1939 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d11ea1e44bb9eef5105b14a5ece0cab83e790699;p=thirdparty%2Fipxe.git Added debugging messages for activation/deactivation of logical devices. --- diff --git a/src/drivers/bus/isapnp.c b/src/drivers/bus/isapnp.c index 0cc352e08..9969f1f96 100644 --- a/src/drivers/bus/isapnp.c +++ b/src/drivers/bus/isapnp.c @@ -517,6 +517,10 @@ void activate_isapnp_device ( struct isapnp_device *isapnp, /* Return all cards to Wait for Key state */ isapnp_wait_for_key (); + + DBG ( "ISAPnP activated logical device %hhx on CSN %hhx " + "with ioaddr %hx and IRQ %d\n", + logdev, isapnp->csn, isapnp->ioaddr, isapnp->irqno ); } /* @@ -536,4 +540,7 @@ void deactivate_isapnp_device ( struct isapnp_device *isapnp, /* Return all cards to Wait for Key state */ isapnp_wait_for_key (); + + DBG ( "ISAPnP deactivated logical device %hhx on CSN %hhx\n", + logdev, isapnp->csn ); }