summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Brown2005-04-15 01:43:34 +0200
committerMichael Brown2005-04-15 01:43:34 +0200
commit344ea224b40ad919301c2ae4a5014cd303ccc948 (patch)
treeabcc0a447d4f4b20779cbac9275f6881a992a013 /src
parentStandardised debug messages to make it easy to get a bus scan printout (diff)
downloadipxe-344ea224b40ad919301c2ae4a5014cd303ccc948.tar.gz
ipxe-344ea224b40ad919301c2ae4a5014cd303ccc948.tar.xz
ipxe-344ea224b40ad919301c2ae4a5014cd303ccc948.zip
Standardised debug message.
Diffstat (limited to 'src')
-rw-r--r--src/drivers/bus/isa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/bus/isa.c b/src/drivers/bus/isa.c
index 2ca1cfd2..e2c1e7ae 100644
--- a/src/drivers/bus/isa.c
+++ b/src/drivers/bus/isa.c
@@ -97,7 +97,7 @@ int find_isa_device ( struct isa_device *isa, struct isa_driver *driver ) {
return 0;
found:
- DBG ( "Found %s ISA device at address %hx\n", driver->name, ioaddr );
+ DBG ( "ISA found %s device at address %hx\n", driver->name, ioaddr );
isa->ioaddr = ioaddr;
isa->already_tried = 1;
return 1;