diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-03-09 09:36:32 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-03-09 09:36:32 +0000 |
commit | 88d2e61dc9b971fb841ed2167144e06dc48ce53d (patch) | |
tree | c628a758837d2051886b764fed63eec637df7c32 /sys | |
parent | 72f5c3e7f53bd2b751467774ebe501407d26a522 (diff) |
proper irq printout (like other busses)
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/eisa/if_ep_eisa.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/eisa/if_ep_eisa.c b/sys/dev/eisa/if_ep_eisa.c index dd575145681..2670f3d9222 100644 --- a/sys/dev/eisa/if_ep_eisa.c +++ b/sys/dev/eisa/if_ep_eisa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ep_eisa.c,v 1.13 2000/05/29 18:04:08 aaron Exp $ */ +/* $OpenBSD: if_ep_eisa.c,v 1.14 2001/03/09 09:36:31 mickey Exp $ */ /* $NetBSD: if_ep_eisa.c,v 1.13 1997/04/18 00:50:33 cgd Exp $ */ /* @@ -199,8 +199,9 @@ ep_eisa_attach(parent, self, aux) printf("\n"); return; } - if (intrstr != NULL) - printf("%s ", intrstr); epconfig(sc, chipset, NULL); + + if (intrstr != NULL) + printf(" %s\n", intrstr); } |