david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Added debugging messages for activation/deactivation of logical devices.

This commit is contained in:
Michael Brown 2005-04-15 14:31:08 +00:00
parent 888277d2d1
commit d11ea1e44b
1 changed files with 7 additions and 0 deletions

View File

@ -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 );
}