From 71f4712b501c5fb55d9dc7b6f32bd05ae2e6accd Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Sat, 12 Oct 1996 17:34:25 +0000 Subject: [PATCH] Staticized. Things exported by linker sets should always be static. --- sys/dev/ep/if_ep_eisa.c | 4 ++-- sys/i386/eisa/3c5x9.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/dev/ep/if_ep_eisa.c b/sys/dev/ep/if_ep_eisa.c index e16d9c3774b..48ad8e3b0d8 100644 --- a/sys/dev/ep/if_ep_eisa.c +++ b/sys/dev/ep/if_ep_eisa.c @@ -19,7 +19,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: 3c5x9.c,v 1.4 1996/07/19 13:19:47 amurai Exp $ + * $Id: 3c5x9.c,v 1.5 1996/09/06 23:06:53 phk Exp $ */ #include "eisa.h" @@ -68,7 +68,7 @@ static int ep_eisa_probe __P((void)); static int ep_eisa_attach __P((struct eisa_device *e_dev)); -struct eisa_driver ep_eisa_driver = { +static struct eisa_driver ep_eisa_driver = { "ep", ep_eisa_probe, ep_eisa_attach, diff --git a/sys/i386/eisa/3c5x9.c b/sys/i386/eisa/3c5x9.c index e16d9c3774b..48ad8e3b0d8 100644 --- a/sys/i386/eisa/3c5x9.c +++ b/sys/i386/eisa/3c5x9.c @@ -19,7 +19,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: 3c5x9.c,v 1.4 1996/07/19 13:19:47 amurai Exp $ + * $Id: 3c5x9.c,v 1.5 1996/09/06 23:06:53 phk Exp $ */ #include "eisa.h" @@ -68,7 +68,7 @@ static int ep_eisa_probe __P((void)); static int ep_eisa_attach __P((struct eisa_device *e_dev)); -struct eisa_driver ep_eisa_driver = { +static struct eisa_driver ep_eisa_driver = { "ep", ep_eisa_probe, ep_eisa_attach,