diff options
author | gibbs <gibbs@FreeBSD.org> | 1996-01-09 16:14:53 +0000 |
---|---|---|
committer | gibbs <gibbs@FreeBSD.org> | 1996-01-09 16:14:53 +0000 |
commit | 136f35748b15d753163e3eeb73e4530d0f2ef4c2 (patch) | |
tree | 73f9e4e1508c7200a184768508302cbb59849d6b | |
parent | 9da24e43b6ceee23cbe53598c9c84c91098af9fa (diff) | |
download | FreeBSD-src-136f35748b15d753163e3eeb73e4530d0f2ef4c2.zip FreeBSD-src-136f35748b15d753163e3eeb73e4530d0f2ef4c2.tar.gz |
Don't bother setting the DSCommand register. Adaptec's own BIOS doesn't.
-rw-r--r-- | sys/pci/aic7870.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/pci/aic7870.c b/sys/pci/aic7870.c index 60ceea4..6ea34c1 100644 --- a/sys/pci/aic7870.c +++ b/sys/pci/aic7870.c @@ -19,7 +19,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: aic7870.c,v 1.21 1996/01/03 06:34:10 gibbs Exp $ + * $Id: aic7870.c,v 1.22 1996/01/07 19:26:11 gibbs Exp $ */ #include <pci.h> @@ -308,9 +308,6 @@ aic7870_attach(config_id, unit) } - /* Enable cache sized transfers, memory, and data parity checking */ - outb(DSCOMMAND + io_port, CACHETHEN|DPARCKEN|MPARCKEN); - if(!(ahc = ahc_alloc(unit, io_port, ahc_t, ahc_f))) return; /* XXX PCI code should take return status */ |