From a294c82acc96cba0501e5e1063dfedc82886343c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20E=C3=9Fer?= Date: Mon, 15 Jan 1996 23:51:10 +0000 Subject: [PATCH] Back out patch 1.53. The problem report that had made me commit this change turned out to have been caused by some other change, and the patch should have had no effect at all (just made the code a little longer). --- sys/pci/ncr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/pci/ncr.c b/sys/pci/ncr.c index 0026d9056d91..59e548c7c24e 100644 --- a/sys/pci/ncr.c +++ b/sys/pci/ncr.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: ncr.c,v 1.57 1996/01/15 00:10:15 se Exp $ +** $Id: ncr.c,v 1.58 1996/01/15 23:16:39 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.57 1996/01/15 00:10:15 se Exp $\n"; + "\n$Id: ncr.c,v 1.58 1996/01/15 23:16:39 se Exp $\n"; static u_long ncr_version = NCR_VERSION * 11 + (u_long) sizeof (struct ncb) * 7 @@ -4943,7 +4943,7 @@ void ncr_exception (ncb_p np) */ while ((istat = INB (nc_istat)) & INTF) { if (DEBUG_FLAGS & DEBUG_TINY) printf ("F"); - OUTB (nc_istat, (istat & SIGP) | INTF); + OUTB (nc_istat, INTF); np->profile.num_fly++; ncr_wakeup (np, 0); };