summaryrefslogtreecommitdiffstats
path: root/src/drivers
diff options
context:
space:
mode:
authorMichael Brown2005-04-16 12:04:56 +0200
committerMichael Brown2005-04-16 12:04:56 +0200
commited7b9109bea595f18bc43142f00f7b4dd9782772 (patch)
tree451cee134a1ba4b5872824d55938167914fdcbff /src/drivers
parentImproved debug messages. (diff)
downloadipxe-ed7b9109bea595f18bc43142f00f7b4dd9782772.tar.gz
ipxe-ed7b9109bea595f18bc43142f00f7b4dd9782772.tar.xz
ipxe-ed7b9109bea595f18bc43142f00f7b4dd9782772.zip
Made debug messages more consistent.
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/bus/eisa.c10
-rw-r--r--src/drivers/bus/pci.c2
2 files changed, 8 insertions, 4 deletions
diff --git a/src/drivers/bus/eisa.c b/src/drivers/bus/eisa.c
index 8b93b302..bb447026 100644
--- a/src/drivers/bus/eisa.c
+++ b/src/drivers/bus/eisa.c
@@ -63,6 +63,7 @@ int find_eisa_device ( struct eisa_device *eisa, struct eisa_driver *driver ) {
/* Iterate through all possible EISA slots, starting where we
* left off.
*/
+ DBG ( "EISA searching for device matching driver %s\n", driver->name );
for ( ; eisa->slot <= EISA_MAX_SLOT ; eisa->slot++ ) {
/* If we've already used this device, skip it */
if ( eisa->already_tried ) {
@@ -82,10 +83,12 @@ int find_eisa_device ( struct eisa_device *eisa, struct eisa_driver *driver ) {
if ( ( eisa->mfg_id == id->mfg_id ) &&
( ISA_PROD_ID ( eisa->prod_id ) ==
ISA_PROD_ID ( id->prod_id ) ) ) {
- DBG ( "Device %s (driver %s) matches ID %s\n",
- id->name, driver->name,
+ DBG ( "EISA found ID %hx:%hx (\"%s\") "
+ "(device %s) matching driver %s\n",
+ eisa->mfg_id, eisa->prod_id,
isa_id_string ( eisa->mfg_id,
- eisa->prod_id ) );
+ eisa->prod_id ),
+ id->name, driver->name );
eisa->name = id->name;
eisa->already_tried = 1;
return 1;
@@ -94,6 +97,7 @@ int find_eisa_device ( struct eisa_device *eisa, struct eisa_driver *driver ) {
}
/* No device found */
+ DBG ( "EISA found no device matching driver %s\n", driver->name );
eisa->slot = EISA_MIN_SLOT;
return 0;
}
diff --git a/src/drivers/bus/pci.c b/src/drivers/bus/pci.c
index 163204d0..4b34454c 100644
--- a/src/drivers/bus/pci.c
+++ b/src/drivers/bus/pci.c
@@ -180,9 +180,9 @@ int find_pci_device ( struct pci_device *pci,
}
}
} while ( ++pci->busdevfn );
- DBG ( "PCI failed to find device matching driver %s\n", driver->name );
/* No device found */
+ DBG ( "PCI found no device matching driver %s\n", driver->name );
return 0;
}