diff options
author | bde <bde@FreeBSD.org> | 1994-11-27 16:16:35 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1994-11-27 16:16:35 +0000 |
commit | 8718fcc4216545867bb9075dfab8ade4dea25938 (patch) | |
tree | 8f70e3462816458940e2c2a117a92a07a50a106b /usr.sbin | |
parent | 29fef6468141bce7f02781c735c8d9ddb60b2123 (diff) | |
download | FreeBSD-src-8718fcc4216545867bb9075dfab8ade4dea25938.zip FreeBSD-src-8718fcc4216545867bb9075dfab8ade4dea25938.tar.gz |
Remove ifdef for STATCLOCK. STATCLOCK is standard.
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"); } - |