Made debug messages more consistent.

pull/1/head
Michael Brown 2005-04-16 10:04:56 +00:00
parent 211a607147
commit ed7b9109be
2 changed files with 8 additions and 4 deletions

View File

@ -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 /* Iterate through all possible EISA slots, starting where we
* left off. * left off.
*/ */
DBG ( "EISA searching for device matching driver %s\n", driver->name );
for ( ; eisa->slot <= EISA_MAX_SLOT ; eisa->slot++ ) { for ( ; eisa->slot <= EISA_MAX_SLOT ; eisa->slot++ ) {
/* If we've already used this device, skip it */ /* If we've already used this device, skip it */
if ( eisa->already_tried ) { 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 ) && if ( ( eisa->mfg_id == id->mfg_id ) &&
( ISA_PROD_ID ( eisa->prod_id ) == ( ISA_PROD_ID ( eisa->prod_id ) ==
ISA_PROD_ID ( id->prod_id ) ) ) { ISA_PROD_ID ( id->prod_id ) ) ) {
DBG ( "Device %s (driver %s) matches ID %s\n", DBG ( "EISA found ID %hx:%hx (\"%s\") "
id->name, driver->name, "(device %s) matching driver %s\n",
eisa->mfg_id, eisa->prod_id,
isa_id_string ( eisa->mfg_id, isa_id_string ( eisa->mfg_id,
eisa->prod_id ) ); eisa->prod_id ),
id->name, driver->name );
eisa->name = id->name; eisa->name = id->name;
eisa->already_tried = 1; eisa->already_tried = 1;
return 1; return 1;
@ -94,6 +97,7 @@ int find_eisa_device ( struct eisa_device *eisa, struct eisa_driver *driver ) {
} }
/* No device found */ /* No device found */
DBG ( "EISA found no device matching driver %s\n", driver->name );
eisa->slot = EISA_MIN_SLOT; eisa->slot = EISA_MIN_SLOT;
return 0; return 0;
} }

View File

@ -180,9 +180,9 @@ int find_pci_device ( struct pci_device *pci,
} }
} }
} while ( ++pci->busdevfn ); } while ( ++pci->busdevfn );
DBG ( "PCI failed to find device matching driver %s\n", driver->name );
/* No device found */ /* No device found */
DBG ( "PCI found no device matching driver %s\n", driver->name );
return 0; return 0;
} }