diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-05-10 20:18:47 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-05-10 20:18:47 +0000 |
commit | a2343827b755c2515aa9c287d4303f1a38a2e1cc (patch) | |
tree | e0bf96cdbccefc95838b49f9361206454e34f181 /sys/arch/hp300/dev/apci.c | |
parent | ad9cb2080175de4bd7bfe369de63ab86edd11452 (diff) |
In apciparam() in the ospeed == 0 case, actually set the cfcr to the new
value; bad@netbsd.org
Diffstat (limited to 'sys/arch/hp300/dev/apci.c')
-rw-r--r-- | sys/arch/hp300/dev/apci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/dev/apci.c b/sys/arch/hp300/dev/apci.c index 5fc39ec29a1..0bf79d9f703 100644 --- a/sys/arch/hp300/dev/apci.c +++ b/sys/arch/hp300/dev/apci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: apci.c,v 1.7 2001/05/10 20:17:54 millert Exp $ */ +/* $OpenBSD: apci.c,v 1.8 2001/05/10 20:18:46 millert Exp $ */ /* $NetBSD: apci.c,v 1.9 2000/11/02 00:35:05 eeh Exp $ */ /*- @@ -752,7 +752,7 @@ apciparam(tp, t) apci->ap_ier = (ospeed >> 8) & 0xff; apci->ap_cfcr = cfcr; } else - apci->ap_cfcr; + apci->ap_cfcr = cfcr; /* and copy to tty */ tp->t_ispeed = t->c_ispeed; |