diff options
author | se <se@FreeBSD.org> | 1996-02-19 00:03:50 +0000 |
---|---|---|
committer | se <se@FreeBSD.org> | 1996-02-19 00:03:50 +0000 |
commit | 99375fedab6dad7551ae08bb25d00f9ff4a65e7e (patch) | |
tree | 9e365be80235f9f6b978689e5445f4212015aaa0 | |
parent | 54dc235aa463834b950e359aa11353fe350ab2a8 (diff) | |
download | FreeBSD-src-99375fedab6dad7551ae08bb25d00f9ff4a65e7e.zip FreeBSD-src-99375fedab6dad7551ae08bb25d00f9ff4a65e7e.tar.gz |
Restore two lines that were erronously deleted with the removal of
the NCR_NO_DISCONNECT option in the previous patch.
-rw-r--r-- | sys/pci/ncr.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/pci/ncr.c b/sys/pci/ncr.c index 63e8ea8..e308f57 100644 --- a/sys/pci/ncr.c +++ b/sys/pci/ncr.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: ncr.c,v 1.62 1996/01/31 19:24:34 se Exp $ +** $Id: ncr.c,v 1.63 1996/02/18 23:15:19 se Exp $ ** ** Device driver for the NCR 53C810 PCI-SCSI-Controller. ** @@ -1249,7 +1249,7 @@ static void ncr_attach (pcici_t tag, int unit); static char ident[] = - "\n$Id: ncr.c,v 1.62 1996/01/31 19:24:34 se Exp $\n"; + "\n$Id: ncr.c,v 1.63 1996/02/18 23:15:19 se Exp $\n"; static u_long ncr_version = NCR_VERSION * 11 + (u_long) sizeof (struct ncb) * 7 @@ -3756,6 +3756,8 @@ static INT32 ncr_start (struct scsi_xfer * xp) */ idmsg = M_IDENTIFY | xp->sc_link->lun; + if ((cp!=&np->ccb) && (np->disc)) + idmsg |= 0x40; msgptr = cp->scsi_smsg; msglen = 0; |