diff options
| author | Michael Brown | 2005-04-16 12:19:13 +0200 |
|---|---|---|
| committer | Michael Brown | 2005-04-16 12:19:13 +0200 |
| commit | e1a9798af47429a358702248513b7ebb6fbeb064 (patch) | |
| tree | 51ddf3a357b1fa0b7a9a9ce79510c73644fe10dd /src/drivers/bus/isa.c | |
| parent | Made debug messages more consistent. (diff) | |
| download | ipxe-e1a9798af47429a358702248513b7ebb6fbeb064.tar.gz ipxe-e1a9798af47429a358702248513b7ebb6fbeb064.tar.xz ipxe-e1a9798af47429a358702248513b7ebb6fbeb064.zip | |
Improved debugging output
Diffstat (limited to 'src/drivers/bus/isa.c')
| -rw-r--r-- | src/drivers/bus/isa.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/drivers/bus/isa.c b/src/drivers/bus/isa.c index a4af12029..6778d4865 100644 --- a/src/drivers/bus/isa.c +++ b/src/drivers/bus/isa.c @@ -44,6 +44,7 @@ int find_isa_device ( struct isa_device *isa, struct isa_driver *driver ) { /* Iterate through any ISA probe addresses specified by * config.c, starting where we left off. */ + DBG ( "ISA searching for device matching driver %s\n", driver->name ); for ( i = isa->probe_idx ; i < isa_extra_probe_addr_count ; i++ ) { /* If we've already used this device, skip it */ if ( isa->already_tried ) { @@ -96,6 +97,7 @@ int find_isa_device ( struct isa_device *isa, struct isa_driver *driver ) { notfound: /* No device found */ + DBG ( "ISA found no device matching driver %s\n", driver->name ); isa->probe_idx = 0; return 0; |
