Remove lint in the intializer of the table used to glue new-config

drivers and the old-config PMAX-specific scsi drivers.
This commit is contained in:
jonathan 1995-08-17 06:54:56 +00:00
parent d7b28f05aa
commit 2c6601a704

View File

@ -1,4 +1,4 @@
/* $NetBSD: autoconf.c,v 1.10 1995/08/10 05:17:09 jonathan Exp $ */
/* $NetBSD: autoconf.c,v 1.11 1995/08/17 06:54:56 jonathan Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -201,13 +201,13 @@ configure()
cold = 0;
}
#define MAX_SCSI 4
static int nscsi;
static struct pmax_ctlr pmax_scsi_table[4] = {
static struct pmax_ctlr pmax_scsi_table[MAX_SCSI+1] = {
/* driver, unit, addr, flags */
{ NULL, },
{ NULL, }, { NULL, }, { NULL, }, { NULL, }
{ NULL, }, { NULL, }, { NULL, }, { NULL, },
{ NULL, } /* sentinel */
};
/*
@ -221,7 +221,7 @@ pmax_add_scsi(dp, unit)
int unit;
{
struct pmax_ctlr *cp = &pmax_scsi_table[nscsi++];
if (nscsi > 4) {
if (nscsi > MAX_SCSI) {
panic("Too many old-style SCSI adaptors\n");
}
cp->pmax_driver = dp;