diff options
author | Michael Brown <mcb30@etherboot.org> | 2005-04-14 23:32:36 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2005-04-14 23:32:36 +0000 |
commit | ed9217152781fccbb936d187ea57406d4cff13de (patch) | |
tree | 53e3e6bb90922c6fac258c11c803aa48064eb588 /src/drivers/bus/mca.c | |
parent | c7694a5322e23763f9538025bdc56b2f603db1b0 (diff) | |
download | ipxe-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/mca.c')
-rw-r--r-- | src/drivers/bus/mca.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/drivers/bus/mca.c b/src/drivers/bus/mca.c index 60690ae11..cc091efa1 100644 --- a/src/drivers/bus/mca.c +++ b/src/drivers/bus/mca.c @@ -39,7 +39,8 @@ static int fill_mca_device ( struct mca_device *mca ) { /* Kill all setup modes */ outb_p ( 0, MCA_ADAPTER_SETUP_REG ); - DBG ( "MCA slot %d id %hx (%hhx:%hhx:%hhx:%hhx:%hhx:%hhx:%hhx:%hhx)\n", + DBG ( "MCA found slot %d id %hx " + "(POS %hhx:%hhx:%hhx:%hhx:%hhx:%hhx:%hhx:%hhx)\n", mca->slot, MCA_ID ( mca ), mca->pos[0], mca->pos[1], mca->pos[2], mca->pos[3], mca->pos[4], mca->pos[5], mca->pos[6], mca->pos[7] ); |