From 05335a0e90fc4c4c7dc61dad0bf6a06fc8ec868f Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Sun, 21 Jul 2002 04:25:30 +0000 Subject: [PATCH] Don't abuse __FreeBSD__ as version number. Since it was >= 3, remove the ifdef completely. --- sys/dev/sr/if_sr.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/sys/dev/sr/if_sr.c b/sys/dev/sr/if_sr.c index 7d30e674395c..7d6b9b34b683 100644 --- a/sys/dev/sr/if_sr.c +++ b/sys/dev/sr/if_sr.c @@ -152,9 +152,7 @@ struct sr_softc { #define SCF_RUNNING 0x01 /* board is active */ #define SCF_OACTIVE 0x02 /* output is active */ int out_dog; /* watchdog cycles output count-down */ -#if ( __FreeBSD__ >= 3 ) struct callout_handle handle; /* timeout(9) handle */ -#endif u_long inbytes, outbytes; /* stats */ u_long lastinbytes, lastoutbytes; /* a second ago */ u_long inrate, outrate; /* highest rate seen */