diff options
Diffstat (limited to 'sys/dev/puc/lpt_puc.c')
-rw-r--r-- | sys/dev/puc/lpt_puc.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/puc/lpt_puc.c b/sys/dev/puc/lpt_puc.c index 1e416472527..c00396e9738 100644 --- a/sys/dev/puc/lpt_puc.c +++ b/sys/dev/puc/lpt_puc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lpt_puc.c,v 1.1 1999/11/28 11:52:06 downsj Exp $ */ +/* $OpenBSD: lpt_puc.c,v 1.2 2000/07/21 17:41:04 mickey Exp $ */ /* $NetBSD: lpt_puc.c,v 1.1 1998/06/26 18:52:41 cgd Exp $ */ /* @@ -95,8 +95,9 @@ lpt_puc_attach(parent, self, aux) printf("\n"); return; } - printf(": interrupting at %s\n", intrstr); + printf(": interrupting at %s", intrstr); sc->sc_state = 0; - bus_space_write_1(sc->sc_iot, sc->sc_ioh, lpt_control, LPC_NINIT); + + lpt_attach_common(sc); } |