diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/eisa/if_ep_eisa.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/eisa/if_ep_eisa.c b/sys/dev/eisa/if_ep_eisa.c index acd0924c5b9..c8da5199b63 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.18 2004/05/12 06:35:10 tedu Exp $ */ +/* $OpenBSD: if_ep_eisa.c,v 1.19 2004/10/29 19:35:13 miod Exp $ */ /* $NetBSD: if_ep_eisa.c,v 1.13 1997/04/18 00:50:33 cgd Exp $ */ /* @@ -204,4 +204,7 @@ ep_eisa_attach(parent, self, aux) printf(" %s,", intrstr); epconfig(sc, chipset, NULL); + /* XXX because epconfig() will not print a newline for vortex chips */ + if (chipset == EP_CHIPSET_VORTEX) + printf("\n"); } |