diff options
| author | Eivind Eklund <eivind@FreeBSD.org> | 1999-04-11 03:06:07 +0000 |
|---|---|---|
| committer | Eivind Eklund <eivind@FreeBSD.org> | 1999-04-11 03:06:07 +0000 |
| commit | c6d0e3f0c1c95f1f96f9cbb5697ba8aa00afa3b3 (patch) | |
| tree | 97231aa25a55c07142b8ff28245f1aa8318de35f /sys/dev | |
| parent | bff24b1f66eb622eeb5380d0c61af17b2c3ecb47 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/advansys/adv_isa.c | 6 | ||||
| -rw-r--r-- | sys/dev/ahb/ahb.c | 4 | ||||
| -rw-r--r-- | sys/dev/si/si2_z280.c | 2 | ||||
| -rw-r--r-- | sys/dev/si/si3_t225.c | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/advansys/adv_isa.c b/sys/dev/advansys/adv_isa.c index 7e9b84de9481a..6d9e4c2dc6721 100644 --- a/sys/dev/advansys/adv_isa.c +++ b/sys/dev/advansys/adv_isa.c @@ -44,7 +44,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: adv_isa.c,v 1.7 1998/11/10 06:44:54 gibbs Exp $ + * $Id: adv_isa.c,v 1.8 1998/12/22 18:14:12 gibbs Exp $ */ #include <sys/param.h> @@ -76,7 +76,7 @@ static bus_dmamap_t overrun_dmamap; static bus_addr_t overrun_physbase; /* Possible port addresses an ISA or VL adapter can live at */ -u_int16_t adv_isa_ioports[] = +static u_int16_t adv_isa_ioports[] = { 0x100, 0x110, /* First selection in BIOS setup */ @@ -375,7 +375,7 @@ adv_set_isapnp_wait_for_key(void) * XXX should go away as soon as ISA interrupt handlers * take a (void *) arg. */ -void +static void adv_isa_intr(void *unit) { struct adv_softc *arg = advsoftcs[(int)unit]; diff --git a/sys/dev/ahb/ahb.c b/sys/dev/ahb/ahb.c index f86e82edb50c6..46c7b5675e4f4 100644 --- a/sys/dev/ahb/ahb.c +++ b/sys/dev/ahb/ahb.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ahb.c,v 1.6 1999/01/28 03:30:02 gibbs Exp $ + * $Id: ahb.c,v 1.7 1999/03/05 23:37:07 gibbs Exp $ */ #include "eisa.h" @@ -1253,7 +1253,7 @@ ahbpoll(struct cam_sim *sim) ahbintr(cam_sim_softc(sim)); } -void +static void ahbtimeout(void *arg) { struct ecb *ecb; diff --git a/sys/dev/si/si2_z280.c b/sys/dev/si/si2_z280.c index 72596d49e3710..28261fae2f05a 100644 --- a/sys/dev/si/si2_z280.c +++ b/sys/dev/si/si2_z280.c @@ -30,7 +30,7 @@ /* SI2_Z280.C Version, Bootstrap and Download Code Arrays... */ -char *si2_z280_ident = "%W%"; +static char *si2_z280_ident = "%W%"; /* SI2_Z280 embedded version... diff --git a/sys/dev/si/si3_t225.c b/sys/dev/si/si3_t225.c index 4d269119c1672..2b70a6c195c74 100644 --- a/sys/dev/si/si3_t225.c +++ b/sys/dev/si/si3_t225.c @@ -30,7 +30,7 @@ /* SI3_T225.C Version, Bootstrap and Download Code Arrays... */ -char *si3_t225_ident = "%W%"; +static char *si3_t225_ident = "%W%"; /* SI3_T225 embedded version... |
