aboutsummaryrefslogtreecommitdiffstats
path: root/src/drivers/bus/eisa.c
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2005-04-14 23:32:36 +0000
committerMichael Brown <mcb30@etherboot.org>2005-04-14 23:32:36 +0000
commited9217152781fccbb936d187ea57406d4cff13de (patch)
tree53e3e6bb90922c6fac258c11c803aa48064eb588 /src/drivers/bus/eisa.c
parentc7694a5322e23763f9538025bdc56b2f603db1b0 (diff)
downloadipxe-ed9217152781fccbb936d187ea57406d4cff13de.tar.gz
Standardised debug messages to make it easy to get a bus scan printout
(just build debugging versions of the relevant bus objects).
Diffstat (limited to 'src/drivers/bus/eisa.c')
-rw-r--r--src/drivers/bus/eisa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/bus/eisa.c b/src/drivers/bus/eisa.c
index 006565111..8b93b3020 100644
--- a/src/drivers/bus/eisa.c
+++ b/src/drivers/bus/eisa.c
@@ -39,7 +39,7 @@ static int fill_eisa_device ( struct eisa_device *eisa ) {
eisa->prod_id = ( inb ( eisa->ioaddr + EISA_PROD_ID_LO ) << 8 )
+ inb ( eisa->ioaddr + EISA_PROD_ID_HI );
- DBG ( "EISA slot %d (base %#hx) ID %hx:%hx (\"%s\")\n",
+ DBG ( "EISA found slot %d (base %#hx) ID %hx:%hx (\"%s\")\n",
eisa->slot, eisa->ioaddr, eisa->mfg_id, eisa->prod_id,
isa_id_string ( eisa->mfg_id, eisa->prod_id ) );