From f505e02090af9834415ec25caa2878517d67694b Mon Sep 17 00:00:00 2001 From: Ariff Abdullah Date: Mon, 2 Apr 2007 10:24:15 +0000 Subject: [PATCH] Revert busy refcount back to int. As a side note, multiple open is still (and always) possible and does not change previous behaviour. Requested by: netchild --- sys/dev/sound/pcm/mixer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/sound/pcm/mixer.c b/sys/dev/sound/pcm/mixer.c index ad1967b5711f..821257042277 100644 --- a/sys/dev/sound/pcm/mixer.c +++ b/sys/dev/sound/pcm/mixer.c @@ -37,7 +37,7 @@ struct snd_mixer { KOBJ_FIELDS; const char *type; void *devinfo; - int busy:1; + int busy; int hwvol_muted; int hwvol_mixer; int hwvol_step;