From d11ea1e44bb9eef5105b14a5ece0cab83e790699 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Fri, 15 Apr 2005 14:31:08 +0000 Subject: [PATCH] Added debugging messages for activation/deactivation of logical devices. --- src/drivers/bus/isapnp.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/drivers/bus/isapnp.c b/src/drivers/bus/isapnp.c index 0cc352e0..9969f1f9 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 ); }