diff options
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/config/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/config/mkioconf.c | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/usr.sbin/config/Makefile b/usr.sbin/config/Makefile index d59ea40..5bab296 100644 --- a/usr.sbin/config/Makefile +++ b/usr.sbin/config/Makefile @@ -1,7 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= config -CFLAGS+=-I. -I${.CURDIR} -DSTATCLOCK +CFLAGS+=-I. -I${.CURDIR} .if defined(CONFIG_DONT_CLOBBER) CFLAGS+= -DCONFIG_DONT_CLOBBER .endif diff --git a/usr.sbin/config/mkioconf.c b/usr.sbin/config/mkioconf.c index 2757443..f8999b9 100644 --- a/usr.sbin/config/mkioconf.c +++ b/usr.sbin/config/mkioconf.c @@ -660,11 +660,7 @@ i386_ioconf() fprintf(fp, "\n"); old = dp; } -#ifdef STATCLOCK dev_id = 2; -#else - dev_id = 1; -#endif isa_devtab(fp, "bio", &dev_id); if(seen_wdc) isa_biotab(fp, "wdc"); @@ -1119,4 +1115,3 @@ comp_config(fp) } fprintf(fp, "\t-1,\t0,\t0,\t0,\t{ 0 },\n};\n"); } - |