summaryrefslogtreecommitdiff
path: root/sys/dev/isa/aha.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/isa/aha.c')
-rw-r--r--sys/dev/isa/aha.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/isa/aha.c b/sys/dev/isa/aha.c
index 323bdd5d285..50acf16c43a 100644
--- a/sys/dev/isa/aha.c
+++ b/sys/dev/isa/aha.c
@@ -1097,7 +1097,8 @@ noinquire:
aha->sc_drq = 7;
break;
default:
- printf("illegal dma setting %x\n", conf.chan);
+ printf("%s: illegal drq setting %x\n", aha->sc_dev.dv_xname,
+ conf.chan);
return EIO;
}
@@ -1121,7 +1122,8 @@ noinquire:
aha->sc_irq = 15;
break;
default:
- printf("illegal int setting %x\n", conf.intr);
+ printf("%s: illegal irq setting %x\n", aha->sc_dev.dv_xname,
+ conf.intr);
return EIO;
}