aboutsummaryrefslogtreecommitdiffstats
path: root/sound/core
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2009-06-22 17:03:54 +0200
committerTakashi Iwai <tiwai@suse.de>2009-06-22 17:03:54 +0200
commit12bc738596ffe4e7f566e13856a0d37ba229b539 (patch)
treebd9ade7c91ed9e6b2e1c6f2f77b149844d5cc28f /sound/core
parentMerge branch 'topic/misc' into for-linus (diff)
parentsound: fix check for return value in snd_pcm_hw_refine (diff)
downloadlinux-dev-12bc738596ffe4e7f566e13856a0d37ba229b539.tar.xz
linux-dev-12bc738596ffe4e7f566e13856a0d37ba229b539.zip
Merge branch 'topic/pcm-jiffies-check' into for-linus
* topic/pcm-jiffies-check: sound: fix check for return value in snd_pcm_hw_refine
Diffstat (limited to 'sound/core')
-rw-r--r--sound/core/pcm_native.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/pcm_native.c b/sound/core/pcm_native.c
index 84da3ba17c86..ac2150e0670d 100644
--- a/sound/core/pcm_native.c
+++ b/sound/core/pcm_native.c
@@ -320,7 +320,7 @@ int snd_pcm_hw_refine(struct snd_pcm_substream *substream,
snd_mask_max(&params->masks[SNDRV_PCM_HW_PARAM_CHANNELS])) {
changed = substream->ops->ioctl(substream,
SNDRV_PCM_IOCTL1_FIFO_SIZE, params);
- if (params < 0)
+ if (changed < 0)
return changed;
}
}