diff options
author | phk <phk@FreeBSD.org> | 1997-05-18 21:22:11 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1997-05-18 21:22:11 +0000 |
commit | b267ceab3d17a3976b4a85946153a64501a005bc (patch) | |
tree | 9bc8ac2fa02f57f4e0b975d2b66dfe41a81fcba8 /sys/dev | |
parent | bdc03328fb3be75298cc4bbb26ac2030cc3b541c (diff) | |
download | FreeBSD-src-b267ceab3d17a3976b4a85946153a64501a005bc.zip FreeBSD-src-b267ceab3d17a3976b4a85946153a64501a005bc.tar.gz |
Whoops, missed a zero there. Flags 0x10000 it is.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/sio/sio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index 5bb3262..7732149 100644 --- a/sys/dev/sio/sio.c +++ b/sys/dev/sio/sio.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)com.c 7.5 (Berkeley) 5/16/91 - * $Id: sio.c,v 1.165 1997/05/18 20:53:52 phk Exp $ + * $Id: sio.c,v 1.166 1997/05/18 21:19:04 phk Exp $ */ #include "opt_comconsole.h" @@ -120,7 +120,7 @@ #define COM_LOSESOUTINTS(dev) ((dev)->id_flags & 0x08) #define COM_NOFIFO(dev) ((dev)->id_flags & 0x02) #define COM_VERBOSE(dev) ((dev)->id_flags & 0x80) -#define COM_NOTST3(dev) ((dev)->id_flags & 0x1000) +#define COM_NOTST3(dev) ((dev)->id_flags & 0x10000) #define com_scr 7 /* scratch register for 16450-16550 (R/W) */ |