diff options
author | 2001-09-04 04:01:42 +0000 | |
---|---|---|
committer | 2001-09-04 04:01:42 +0000 | |
commit | a5290a33a22bd18b22a59d1d1e2bdead28be14b9 (patch) | |
tree | bc502bda6873f9a44d7a124c9d0c96a0fe7634f4 | |
parent | Make it compile without option BPF. (diff) | |
download | wireguard-openbsd-a5290a33a22bd18b22a59d1d1e2bdead28be14b9.tar.xz wireguard-openbsd-a5290a33a22bd18b22a59d1d1e2bdead28be14b9.zip |
Fix mask for callout unit
-rw-r--r-- | sys/dev/pci/cz.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/cz.c b/sys/dev/pci/cz.c index c2e2d84a912..402b758a821 100644 --- a/sys/dev/pci/cz.c +++ b/sys/dev/pci/cz.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cz.c,v 1.3 2001/08/25 10:13:29 art Exp $ */ +/* $OpenBSD: cz.c,v 1.4 2001/09/04 04:01:42 nate Exp $ */ /* $NetBSD: cz.c,v 1.15 2001/01/20 19:10:36 thorpej Exp $ */ /*- @@ -854,7 +854,7 @@ cz_wait_pci_doorbell(struct cz_softc *cz, char *wstring) * Cyclades-Z TTY code starts here... *****************************************************************************/ -#define CZTTYDIALOUT_MASK 0x80000 +#define CZTTYDIALOUT_MASK 0x80 #define CZTTY_DIALOUT(dev) (minor((dev)) & CZTTYDIALOUT_MASK) #define CZTTY_CZ(sc) ((sc)->sc_parent) |