diff options
author | eivind <eivind@FreeBSD.org> | 1998-02-09 06:11:36 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1998-02-09 06:11:36 +0000 |
commit | d7a6ab28035779065026b70dca440892d819c0bc (patch) | |
tree | 930fd4603b42a095e9f3669517dea29274323575 /sys/i386/eisa/eisaconf.c | |
parent | 4538098d0b3fbe09f64c578b730483a6e77ff40f (diff) | |
download | FreeBSD-src-d7a6ab28035779065026b70dca440892d819c0bc.zip FreeBSD-src-d7a6ab28035779065026b70dca440892d819c0bc.tar.gz |
Staticize.
Diffstat (limited to 'sys/i386/eisa/eisaconf.c')
-rw-r--r-- | sys/i386/eisa/eisaconf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/i386/eisa/eisaconf.c b/sys/i386/eisa/eisaconf.c index de62d63..02a1691 100644 --- a/sys/i386/eisa/eisaconf.c +++ b/sys/i386/eisa/eisaconf.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: eisaconf.c,v 1.32 1997/10/28 15:58:08 bde Exp $ + * $Id: eisaconf.c,v 1.33 1997/11/07 08:52:24 phk Exp $ */ #include "opt_eisa.h" @@ -77,8 +77,8 @@ DATA_SET (eisadriver_set, mainboard_drv); /* * Local function declarations and static variables */ -void eisa_reg_print __P((struct eisa_device *e_dev, char *string, - char *separator)); +static void eisa_reg_print __P((struct eisa_device *e_dev, + char *string, char *separator)); static int eisa_add_resvaddr __P((struct eisa_device *e_dev, struct resvlist *head, u_long base, u_long size, int flags)); @@ -312,7 +312,7 @@ eisa_reg_start(e_dev) * Output an optional character separator before the string * if the line does not wrap. */ -void +static void eisa_reg_print(e_dev, string, separator) struct eisa_device *e_dev; char *string; |