Staticize again.

This commit is contained in:
Poul-Henning Kamp 1995-11-29 10:12:34 +00:00
parent 490dd8738b
commit bd8b134f3b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=12513
4 changed files with 12 additions and 12 deletions

View File

@ -18,7 +18,7 @@
* 4. Modifications may be freely made to this file if the above conditions
* are met.
*
* $Id: eisaconf.c,v 1.7 1995/11/10 01:32:12 gibbs Exp $
* $Id: eisaconf.c,v 1.8 1995/11/20 12:41:11 phk Exp $
*/
#include <sys/param.h>
#include <sys/systm.h>
@ -61,7 +61,7 @@ static struct eisa_device_node *eisa_dev_list;
static struct eisa_device_node **eisa_dev_list_tail = &eisa_dev_list;
static u_long eisa_unit;
static struct eisa_driver mainboard_drv = {
static static struct eisa_driver mainboard_drv = {
"eisa",
NULL,
NULL,

View File

@ -14,7 +14,7 @@
*
* commenced: Sun Sep 27 18:14:01 PDT 1992
*
* $Id: aha1742.c,v 1.39 1995/11/04 17:07:03 bde Exp $
* $Id: aha1742.c,v 1.40 1995/11/09 22:43:24 gibbs Exp $
*/
#include <sys/types.h>
@ -278,7 +278,7 @@ static int ahb_debug = 0;
#define PAGESIZ 4096
#ifdef KERNEL
struct eisa_driver ahb_eisa_driver =
static struct eisa_driver ahb_eisa_driver =
{
"ahb",
ahbprobe,

View File

@ -19,7 +19,7 @@
* 4. Modifications may be freely made to this file if the above conditions
* are met.
*
* $Id: aic7770.c,v 1.17 1995/11/05 04:42:47 gibbs Exp $
* $Id: aic7770.c,v 1.18 1995/11/09 07:14:09 gibbs Exp $
*/
#include "eisa.h"
@ -44,10 +44,10 @@
#define AHC_EISA_IOSIZE 0x100
#define INTDEF 0x5cul /* Interrupt Definition Register */
int aic7770probe __P((void));
int aic7770_attach __P((struct eisa_device *e_dev));
static int aic7770probe __P((void));
static int aic7770_attach __P((struct eisa_device *e_dev));
struct eisa_driver ahc_eisa_driver = {
static struct eisa_driver ahc_eisa_driver = {
"ahc",
aic7770probe,
aic7770_attach,
@ -89,7 +89,7 @@ aic7770_match(type)
return (NULL);
}
int
static int
aic7770probe(void)
{
u_long iobase;
@ -142,7 +142,7 @@ aic7770probe(void)
return count;
}
int
static int
aic7770_attach(e_dev)
struct eisa_device *e_dev;
{

View File

@ -18,7 +18,7 @@
* 4. Modifications may be freely made to this file if the above conditions
* are met.
*
* $Id: eisaconf.c,v 1.7 1995/11/10 01:32:12 gibbs Exp $
* $Id: eisaconf.c,v 1.8 1995/11/20 12:41:11 phk Exp $
*/
#include <sys/param.h>
#include <sys/systm.h>
@ -61,7 +61,7 @@ static struct eisa_device_node *eisa_dev_list;
static struct eisa_device_node **eisa_dev_list_tail = &eisa_dev_list;
static u_long eisa_unit;
static struct eisa_driver mainboard_drv = {
static static struct eisa_driver mainboard_drv = {
"eisa",
NULL,
NULL,