diff options
author | bde <bde@FreeBSD.org> | 1995-11-29 17:40:47 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-11-29 17:40:47 +0000 |
commit | 25c88c6232725d2f8bdcb57b40fc2dc06172817f (patch) | |
tree | bb98e3f2754bccab60958062a2f0a57f36f00eb8 /sys/dev/eisa | |
parent | f76dc322ec43ea924081e600779e46019581f771 (diff) | |
download | FreeBSD-src-25c88c6232725d2f8bdcb57b40fc2dc06172817f.zip FreeBSD-src-25c88c6232725d2f8bdcb57b40fc2dc06172817f.tar.gz |
Don't staticize again (twice).
Cleaned up includes.
Diffstat (limited to 'sys/dev/eisa')
-rw-r--r-- | sys/dev/eisa/eisaconf.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/dev/eisa/eisaconf.c b/sys/dev/eisa/eisaconf.c index 2722266..f3c0a0a 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.8 1995/11/20 12:41:11 phk Exp $ + * $Id: eisaconf.c,v 1.9 1995/11/29 10:12:34 phk Exp $ */ #include <sys/param.h> #include <sys/systm.h> @@ -28,8 +28,9 @@ #include <sys/malloc.h> #include <sys/devconf.h> -#include "i386/isa/icu.h" /* Hmmm. Interrupt stuff? */ -#include "eisaconf.h" +#include <i386/eisa/eisaconf.h> + +#include <i386/isa/icu.h> /* Hmmm. Interrupt stuff? */ struct eisa_device_node{ struct eisa_device dev; @@ -61,7 +62,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 static struct eisa_driver mainboard_drv = { +static struct eisa_driver mainboard_drv = { "eisa", NULL, NULL, |