From 296bbb4cfbac0af88b6b346765373f8f03236428 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp <phk@FreeBSD.org> Date: Sat, 14 Sep 2002 18:58:36 +0000 Subject: [PATCH] FreeBSD -current doesn't need <sys/buf.h> or <sys/bio.h>. --- sys/dev/sound/pcm/sound.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sys/dev/sound/pcm/sound.h b/sys/dev/sound/pcm/sound.h index acc7141e4665..7afa9485db48 100644 --- a/sys/dev/sound/pcm/sound.h +++ b/sys/dev/sound/pcm/sound.h @@ -52,10 +52,9 @@ #include <sys/errno.h> #include <sys/malloc.h> #include <sys/bus.h> -#if __FreeBSD_version > 500000 -#include <sys/bio.h> -#endif +#if __FreeBSD_version < 500000 #include <sys/buf.h> +#endif #include <machine/clock.h> /* for DELAY */ #include <machine/resource.h> #include <machine/bus.h>