diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-30 16:26:35 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-30 16:26:35 +0000 |
commit | 21fb93559f008f2db99e73377ebe9bddde6f866d (patch) | |
tree | 0786a441e12854965cfe9ace5b1a60e0629240ec /sys/dev/pci/ncr.c | |
parent | aeb854d1d3828c567db1ec0f13756a3ae46aa59a (diff) |
Change an splhigh() -> splbio(). From NetBSD (mycroft)
Diffstat (limited to 'sys/dev/pci/ncr.c')
-rw-r--r-- | sys/dev/pci/ncr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pci/ncr.c b/sys/dev/pci/ncr.c index ae05dc2b35b..0fb24d50f18 100644 --- a/sys/dev/pci/ncr.c +++ b/sys/dev/pci/ncr.c @@ -1,5 +1,5 @@ -/* $OpenBSD: ncr.c,v 1.28 1997/04/10 16:51:38 pefo Exp $ */ -/* $NetBSD: ncr.c,v 1.55 1997/01/10 05:57:10 perry Exp $ */ +/* $OpenBSD: ncr.c,v 1.29 1997/04/30 16:26:34 millert Exp $ */ +/* $NetBSD: ncr.c,v 1.56 1997/03/04 21:42:34 mycroft Exp $ */ /************************************************************************** ** @@ -1356,7 +1356,7 @@ static void ncr_attach (pcici_t tag, int unit); #if 0 static char ident[] = - "\n$OpenBSD: ncr.c,v 1.28 1997/04/10 16:51:38 pefo Exp $\n"; + "\n$OpenBSD: ncr.c,v 1.29 1997/04/30 16:26:34 millert Exp $\n"; #endif static const u_long ncr_version = NCR_VERSION * 11 @@ -6378,7 +6378,7 @@ static ccb_p ncr_get_ccb ccb_p cp = (ccb_p) 0; int oldspl; - oldspl = splhigh(); + oldspl = splbio(); /* ** Lun structure available ? */ |