diff options
| author | bjh21 <bjh21@NetBSD.org> | 2001-06-02 11:43:40 +0000 |
|---|---|---|
| committer | bjh21 <bjh21@NetBSD.org> | 2001-06-02 11:43:40 +0000 |
| commit | e9ff9b9d73ea3b4fc6f2e623d342d0ec413b577a (patch) | |
| tree | b78a0443a40509f43f686535dd8da5b6651c6346 /sys/dev/podulebus | |
| parent | 68035f55f1a1878fac212a03fda77c99a731d7df (diff) | |
Enable disconnect/reselect (now that it works) and parity checking.
Diffstat (limited to 'sys/dev/podulebus')
| -rw-r--r-- | sys/dev/podulebus/hcsc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/podulebus/hcsc.c b/sys/dev/podulebus/hcsc.c index 3744c8447e6..ab58a6b9316 100644 --- a/sys/dev/podulebus/hcsc.c +++ b/sys/dev/podulebus/hcsc.c @@ -1,4 +1,4 @@ -/* $NetBSD: hcsc.c,v 1.2 2001/05/28 22:54:10 bjh21 Exp $ */ +/* $NetBSD: hcsc.c,v 1.3 2001/06/02 11:43:40 bjh21 Exp $ */ /* * Copyright (c) 2001 Ben Harris @@ -72,7 +72,7 @@ #include <sys/param.h> -__KERNEL_RCSID(0, "$NetBSD: hcsc.c,v 1.2 2001/05/28 22:54:10 bjh21 Exp $"); +__KERNEL_RCSID(0, "$NetBSD: hcsc.c,v 1.3 2001/06/02 11:43:40 bjh21 Exp $"); #include <sys/systm.h> #include <sys/kernel.h> @@ -147,8 +147,8 @@ hcsc_attach(struct device *parent, struct device *self, void *aux) char hi_option[sizeof(sc->sc_ncr5380.sc_dev.dv_xname) + 8]; sc->sc_ncr5380.sc_min_dma_len = 0; - sc->sc_ncr5380.sc_no_disconnect = 0xff; - sc->sc_ncr5380.sc_parity_disable = 0xff; + sc->sc_ncr5380.sc_no_disconnect = 0; + sc->sc_ncr5380.sc_parity_disable = 0; sc->sc_ncr5380.sc_dma_alloc = NULL; sc->sc_ncr5380.sc_dma_free = NULL; |
