diff --git a/sys/dev/eisa/eisaconf.c b/sys/dev/eisa/eisaconf.c index b83cc493d45a..27222667bc9e 100644 --- a/sys/dev/eisa/eisaconf.c +++ b/sys/dev/eisa/eisaconf.c @@ -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 #include @@ -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, diff --git a/sys/i386/eisa/aha1742.c b/sys/i386/eisa/aha1742.c index 941d0cf2e545..7a33c048b63a 100644 --- a/sys/i386/eisa/aha1742.c +++ b/sys/i386/eisa/aha1742.c @@ -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 @@ -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, diff --git a/sys/i386/eisa/aic7770.c b/sys/i386/eisa/aic7770.c index 5285d39041fd..1aa65b2f0641 100644 --- a/sys/i386/eisa/aic7770.c +++ b/sys/i386/eisa/aic7770.c @@ -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; { diff --git a/sys/i386/eisa/eisaconf.c b/sys/i386/eisa/eisaconf.c index b83cc493d45a..27222667bc9e 100644 --- a/sys/i386/eisa/eisaconf.c +++ b/sys/i386/eisa/eisaconf.c @@ -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 #include @@ -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,