diff options
Diffstat (limited to 'sys/arch/i386/i386/autoconf.c')
-rw-r--r-- | sys/arch/i386/i386/autoconf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/i386/autoconf.c b/sys/arch/i386/i386/autoconf.c index a6808225333..4d199a49829 100644 --- a/sys/arch/i386/i386/autoconf.c +++ b/sys/arch/i386/i386/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.50 2003/09/11 21:48:56 deraadt Exp $ */ +/* $OpenBSD: autoconf.c,v 1.51 2003/10/14 19:38:20 jason Exp $ */ /* $NetBSD: autoconf.c,v 1.20 1996/05/03 19:41:56 christos Exp $ */ /*- @@ -85,7 +85,7 @@ void viac3_rnd(void *); #ifdef CRYPTO extern int viac3_crypto_present; void viac3_crypto_setup(void); -#endif +#endif /* CRYPTO */ #endif /* @@ -130,10 +130,10 @@ cpu_configure() timeout_set(&viac3_rnd_tmo, viac3_rnd, &viac3_rnd_tmo); viac3_rnd(&viac3_rnd_tmo); } +#ifdef CRYPTO /* * Also, if the chip as crypto available, enable it. */ -#ifdef CRYPTO if (viac3_crypto_present) viac3_crypto_setup(); #endif /* CRYPTO */ |