dect
/
linux-2.6
Archived
13
0
Fork 0

sound, ca0106: Fix assignment to 'channel'.

The assignment to the local variable 'channel' in
snd_ca0106_pcm_pointer_capture() is a little crazy.  Order of assignment is
undefined. This fixes it.

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
Jesper Juhl 2010-12-27 15:09:53 +01:00 committed by Jiri Kosina
parent 43b210139a
commit c521dde6a6
1 changed files with 1 additions and 1 deletions

View File

@ -1082,7 +1082,7 @@ snd_ca0106_pcm_pointer_capture(struct snd_pcm_substream *substream)
struct snd_pcm_runtime *runtime = substream->runtime;
struct snd_ca0106_pcm *epcm = runtime->private_data;
snd_pcm_uframes_t ptr, ptr1, ptr2 = 0;
int channel = channel=epcm->channel_id;
int channel = epcm->channel_id;
if (!epcm->running)
return 0;