summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/i386/isa/asc.c6
-rw-r--r--sys/i386/isa/gsc.c4
2 files changed, 7 insertions, 3 deletions
diff --git a/sys/i386/isa/asc.c b/sys/i386/isa/asc.c
index da8c7a2..bc15c25 100644
--- a/sys/i386/isa/asc.c
+++ b/sys/i386/isa/asc.c
@@ -34,7 +34,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
- * $Id: asc.c,v 1.17 1996/03/28 14:28:35 scrappy Exp $
+ * $Id: asc.c,v 1.18 1996/04/08 19:40:54 smpatel Exp $
*/
#include "asc.h"
@@ -180,7 +180,9 @@ struct asc_unit {
void *devfs_ascd;
void *devfs_ascpd;
#endif
-} unittab[NASC];
+};
+
+static struct asc_unit unittab[NASC];
/*** I could not find a reasonable buffer size limit other than by
*** experiments. MAXPHYS is obviously too much, while DEV_BSIZE and
diff --git a/sys/i386/isa/gsc.c b/sys/i386/isa/gsc.c
index c92e3d0..430a44b 100644
--- a/sys/i386/isa/gsc.c
+++ b/sys/i386/isa/gsc.c
@@ -160,7 +160,9 @@ struct gsc_unit {
void *devfs_gscd;
void *devfs_gscpd;
#endif
-} unittab[NGSC];
+};
+
+static struct gsc_unit unittab[NGSC];
/* I could not find a reasonable buffer size limit other than by
* experiments. MAXPHYS is obviously too much, while DEV_BSIZE and
OpenPOWER on IntegriCloud