diff options
author | cg <cg@FreeBSD.org> | 1999-11-20 16:50:33 +0000 |
---|---|---|
committer | cg <cg@FreeBSD.org> | 1999-11-20 16:50:33 +0000 |
commit | b2eb38ffac6c6bdaa36a993f56f02c68a7e12fc6 (patch) | |
tree | 7ae8874a48e567b33d8d21d34a672f52c6e5978c /sys/dev/sound/pcm | |
parent | f65e4dc8cd7e232012422502e55bafb00fa908f8 (diff) | |
download | FreeBSD-src-b2eb38ffac6c6bdaa36a993f56f02c68a7e12fc6.zip FreeBSD-src-b2eb38ffac6c6bdaa36a993f56f02c68a7e12fc6.tar.gz |
repo-copied to make way for newmidi, this commit updates include paths
Diffstat (limited to 'sys/dev/sound/pcm')
-rw-r--r-- | sys/dev/sound/pcm/ac97.c | 4 | ||||
-rw-r--r-- | sys/dev/sound/pcm/channel.c | 2 | ||||
-rw-r--r-- | sys/dev/sound/pcm/dsp.c | 2 | ||||
-rw-r--r-- | sys/dev/sound/pcm/fake.c | 2 | ||||
-rw-r--r-- | sys/dev/sound/pcm/feeder.c | 2 | ||||
-rw-r--r-- | sys/dev/sound/pcm/mixer.c | 2 | ||||
-rw-r--r-- | sys/dev/sound/pcm/sound.c | 2 | ||||
-rw-r--r-- | sys/dev/sound/pcm/sound.h | 8 |
8 files changed, 12 insertions, 12 deletions
diff --git a/sys/dev/sound/pcm/ac97.c b/sys/dev/sound/pcm/ac97.c index 18c38e7..dfb1e1c 100644 --- a/sys/dev/sound/pcm/ac97.c +++ b/sys/dev/sound/pcm/ac97.c @@ -26,8 +26,8 @@ * $FreeBSD$ */ -#include <dev/pcm/sound.h> -#include <dev/pcm/ac97.h> +#include <dev/sound/pcm/sound.h> +#include <dev/sound/pcm/ac97.h> #define AC97_MUTE 0x8000 diff --git a/sys/dev/sound/pcm/channel.c b/sys/dev/sound/pcm/channel.c index 38e1796..3cdc3e9 100644 --- a/sys/dev/sound/pcm/channel.c +++ b/sys/dev/sound/pcm/channel.c @@ -27,7 +27,7 @@ * $FreeBSD$ */ -#include <dev/pcm/sound.h> +#include <dev/sound/pcm/sound.h> #define MIN_CHUNK_SIZE 256 /* for uiomove etc. */ #define DMA_ALIGN_THRESHOLD 4 diff --git a/sys/dev/sound/pcm/dsp.c b/sys/dev/sound/pcm/dsp.c index 7347e3c..3990866 100644 --- a/sys/dev/sound/pcm/dsp.c +++ b/sys/dev/sound/pcm/dsp.c @@ -30,7 +30,7 @@ #include <sys/queue.h> #include <sys/kernel.h> -#include <dev/pcm/sound.h> +#include <dev/sound/pcm/sound.h> static int getchns(snddev_info *d, int chan, pcm_channel **rdch, pcm_channel **wrch); diff --git a/sys/dev/sound/pcm/fake.c b/sys/dev/sound/pcm/fake.c index b04eea7..68ef6d3 100644 --- a/sys/dev/sound/pcm/fake.c +++ b/sys/dev/sound/pcm/fake.c @@ -28,7 +28,7 @@ #include "pcm.h" -#include <dev/pcm/sound.h> +#include <dev/sound/pcm/sound.h> /* channel interface */ static void *fkchan_init(void *devinfo, snd_dbuf *b, pcm_channel *c, int dir); diff --git a/sys/dev/sound/pcm/feeder.c b/sys/dev/sound/pcm/feeder.c index 055dc98..a545c1f 100644 --- a/sys/dev/sound/pcm/feeder.c +++ b/sys/dev/sound/pcm/feeder.c @@ -26,7 +26,7 @@ * $FreeBSD$ */ -#include <dev/pcm/sound.h> +#include <dev/sound/pcm/sound.h> static int chn_addfeeder(pcm_channel *c, pcm_feeder *f); static int chn_removefeeder(pcm_channel *c); diff --git a/sys/dev/sound/pcm/mixer.c b/sys/dev/sound/pcm/mixer.c index 9f9e8d3..2a00a12 100644 --- a/sys/dev/sound/pcm/mixer.c +++ b/sys/dev/sound/pcm/mixer.c @@ -26,7 +26,7 @@ * $FreeBSD$ */ -#include <dev/pcm/sound.h> +#include <dev/sound/pcm/sound.h> static u_int16_t snd_mixerdefaults[SOUND_MIXER_NRDEVICES] = { [SOUND_MIXER_VOLUME] = 75, diff --git a/sys/dev/sound/pcm/sound.c b/sys/dev/sound/pcm/sound.c index 4a39eec..4d8b64e 100644 --- a/sys/dev/sound/pcm/sound.c +++ b/sys/dev/sound/pcm/sound.c @@ -29,7 +29,7 @@ #include "opt_devfs.h" -#include <dev/pcm/sound.h> +#include <dev/sound/pcm/sound.h> #ifdef DEVFS #include <sys/devfsext.h> #endif /* DEVFS */ diff --git a/sys/dev/sound/pcm/sound.h b/sys/dev/sound/pcm/sound.h index 6ef6c72..40a5c13 100644 --- a/sys/dev/sound/pcm/sound.h +++ b/sys/dev/sound/pcm/sound.h @@ -89,10 +89,10 @@ struct isa_device { int dummy; }; #endif /* _OS_H_ */ -#include <dev/pcm/datatypes.h> -#include <dev/pcm/channel.h> -#include <dev/pcm/mixer.h> -#include <dev/pcm/dsp.h> +#include <dev/sound/pcm/datatypes.h> +#include <dev/sound/pcm/channel.h> +#include <dev/sound/pcm/mixer.h> +#include <dev/sound/pcm/dsp.h> #define MAGIC(unit) (0xa4d10de0 + unit) |