X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=sound%2Fpci%2Frme32.c;h=618653e22561ba3a208afa55138201549c224334;hb=0471448f4d017470995d8a2272dc8c06dbed3b77;hp=6bb7ac650ec42dde1fc8dfb97ff304881bee976c;hpb=8df8bb4adf7e4abb48d29dc16c29eda40a64afed;p=powerpc.git diff --git a/sound/pci/rme32.c b/sound/pci/rme32.c index 6bb7ac650e..618653e225 100644 --- a/sound/pci/rme32.c +++ b/sound/pci/rme32.c @@ -1078,12 +1078,10 @@ static int snd_rme32_pcm_trigger(struct snd_pcm_substream *substream, int cmd) { struct rme32 *rme32 = snd_pcm_substream_chip(substream); - struct list_head *pos; struct snd_pcm_substream *s; spin_lock(&rme32->lock); - snd_pcm_group_for_each(pos, substream) { - s = snd_pcm_group_substream_entry(pos); + snd_pcm_group_for_each_entry(s, substream) { if (s != rme32->playback_substream && s != rme32->capture_substream) continue; @@ -1110,8 +1108,7 @@ snd_rme32_pcm_trigger(struct snd_pcm_substream *substream, int cmd) /* prefill playback buffer */ if (cmd == SNDRV_PCM_TRIGGER_START && rme32->fullduplex_mode) { - snd_pcm_group_for_each(pos, substream) { - s = snd_pcm_group_substream_entry(pos); + snd_pcm_group_for_each_entry(s, substream) { if (s == rme32->playback_substream) { s->ops->ack(s); break;