summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Sperling <stsp@cvs.openbsd.org>2015-08-18 06:54:01 +0000
committerStefan Sperling <stsp@cvs.openbsd.org>2015-08-18 06:54:01 +0000
commit3d4b5a931a9997ea73661b6ef67ac7ce02525b9d (patch)
tree262070a70993efdfae8da7027cc7c55f85127024
parent6454fe23fc04a8d66b366e212f03f1faff656257 (diff)
Add missing trailing to error message:
pckbc0: unable to establish interrupt for irq 12pckbd0 at pckbc0 (kbd slot) ok miod@
-rw-r--r--sys/dev/isa/pckbc_isa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/pckbc_isa.c b/sys/dev/isa/pckbc_isa.c
index cce10af0ac2..e94fd7e52a1 100644
--- a/sys/dev/isa/pckbc_isa.c
+++ b/sys/dev/isa/pckbc_isa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pckbc_isa.c,v 1.18 2015/05/24 10:57:47 miod Exp $ */
+/* $OpenBSD: pckbc_isa.c,v 1.19 2015/08/18 06:54:00 stsp Exp $ */
/* $NetBSD: pckbc_isa.c,v 1.2 2000/03/23 07:01:35 thorpej Exp $ */
/*
@@ -142,7 +142,7 @@ pckbc_isa_attach(struct device *parent, struct device *self, void *aux)
rv = isa_intr_establish(ia->ia_ic, ia->ipa_irq[slot].num,
IST_EDGE, IPL_TTY, pckbcintr, sc, sc->sc_dv.dv_xname);
if (rv == NULL) {
- printf("%s: unable to establish interrupt for irq %d",
+ printf("%s: unable to establish interrupt for irq %d\n",
sc->sc_dv.dv_xname, ia->ipa_irq[slot].num);
/* XXX fail attach? */
}