aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/sound
diff options
context:
space:
mode:
authorAntoine Brodin <antoine@FreeBSD.org>2009-12-28 22:56:30 +0000
committerAntoine Brodin <antoine@FreeBSD.org>2009-12-28 22:56:30 +0000
commit13e403fdeadd26f9748ba83ea50ee271fbfc862a (patch)
tree368556d68241b943dc9c2ec710bd21f97a0e608d /sys/dev/sound
parent9189129097632f0cf3dad7c9ac9d69ac39d56b2d (diff)
Notes
Diffstat (limited to 'sys/dev/sound')
-rw-r--r--sys/dev/sound/pcm/channel.c2
-rw-r--r--sys/dev/sound/pcm/sndstat.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sound/pcm/channel.c b/sys/dev/sound/pcm/channel.c
index 42ea86faab43..ec7cb9802ac8 100644
--- a/sys/dev/sound/pcm/channel.c
+++ b/sys/dev/sound/pcm/channel.c
@@ -220,7 +220,7 @@ MTX_SYSINIT(pcm_syncgroup, &snd_pcm_syncgroups_mtx, "PCM channel sync group lock
*
* See SNDCTL_DSP_SYNCGROUP for more information.
*/
-struct pcm_synclist snd_pcm_syncgroups = SLIST_HEAD_INITIALIZER(head);
+struct pcm_synclist snd_pcm_syncgroups = SLIST_HEAD_INITIALIZER(snd_pcm_syncgroups);
static void
chn_lockinit(struct pcm_channel *c, int dir)
diff --git a/sys/dev/sound/pcm/sndstat.c b/sys/dev/sound/pcm/sndstat.c
index 6d35803de87f..293c777edfe8 100644
--- a/sys/dev/sound/pcm/sndstat.c
+++ b/sys/dev/sound/pcm/sndstat.c
@@ -79,7 +79,7 @@ static int sndstat_files = 0;
} \
} while (0)
-static SLIST_HEAD(, sndstat_entry) sndstat_devlist = SLIST_HEAD_INITIALIZER(none);
+static SLIST_HEAD(, sndstat_entry) sndstat_devlist = SLIST_HEAD_INITIALIZER(sndstat_devlist);
int snd_verbose = 1;
TUNABLE_INT("hw.snd.verbose", &snd_verbose);