aboutsummaryrefslogtreecommitdiff
path: root/sys/pci/ncr.c
diff options
context:
space:
mode:
authorEivind Eklund <eivind@FreeBSD.org>1998-02-09 06:11:36 +0000
committerEivind Eklund <eivind@FreeBSD.org>1998-02-09 06:11:36 +0000
commit303b270b0a55fd0dc287afb82267317ca7826a7b (patch)
tree82f7f30caed0917853b890f61d2857d27c2e02e3 /sys/pci/ncr.c
parent645c4be38a40ae297fc27d00d66da5599fe60eb6 (diff)
downloadsrc-303b270b0a55fd0dc287afb82267317ca7826a7b.tar.gz
src-303b270b0a55fd0dc287afb82267317ca7826a7b.zip
Staticize.
Notes
Notes: svn path=/head/; revision=33181
Diffstat (limited to 'sys/pci/ncr.c')
-rw-r--r--sys/pci/ncr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/pci/ncr.c b/sys/pci/ncr.c
index 55bd801acf7a..9a95889d9b18 100644
--- a/sys/pci/ncr.c
+++ b/sys/pci/ncr.c
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: ncr.c,v 1.113 1997/12/02 22:37:58 se Exp $
+** $Id: ncr.c,v 1.114 1998/02/04 03:47:16 eivind Exp $
**
** Device driver for the NCR 53C810 PCI-SCSI-Controller.
**
@@ -1342,7 +1342,7 @@ static void ncr_attach (pcici_t tag, int unit);
static char ident[] =
- "\n$Id: ncr.c,v 1.113 1997/12/02 22:37:58 se Exp $\n";
+ "\n$Id: ncr.c,v 1.114 1998/02/04 03:47:16 eivind Exp $\n";
static const u_long ncr_version = NCR_VERSION * 11
+ (u_long) sizeof (struct ncb) * 7
@@ -1352,7 +1352,7 @@ static const u_long ncr_version = NCR_VERSION * 11
#ifdef KERNEL
static const int nncr=MAX_UNITS; /* XXX to be replaced by SYSCTL */
-ncb_p ncrp [MAX_UNITS]; /* XXX to be replaced by SYSCTL */
+static ncb_p ncrp [MAX_UNITS]; /* XXX to be replaced by SYSCTL */
static int ncr_debug = SCSI_NCR_DEBUG;
SYSCTL_INT(_debug, OID_AUTO, ncr_debug, CTLFLAG_RW, &ncr_debug, 0, "");