diff options
author | Vinod Koul <vinod.koul@intel.com> | 2013-07-29 05:40:22 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2013-07-29 07:58:08 -0400 |
commit | a8d30608eaed6cc759b8e2e8a8bbbb42591f797f (patch) | |
tree | 579ffca8fb888783e6632482b11d003668b3565e | |
parent | 43cbd286fbba4bfb0c2ef05dc62522dfd5a2c000 (diff) |
ALSA: compress: fix the return value for SNDRV_COMPRESS_VERSION
the return value of SNDRV_COMPRESS_VERSION always return default -ENOTTY as the
return value was never updated for this call
assign return value from put_user()
Reported-by: Haynes <hgeorge@codeaurora.org>
CC: stable@vger.kernel.org
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/core/compress_offload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/compress_offload.c b/sound/core/compress_offload.c index 99db892d7299..98969541cbcc 100644 --- a/sound/core/compress_offload.c +++ b/sound/core/compress_offload.c | |||
@@ -743,7 +743,7 @@ static long snd_compr_ioctl(struct file *f, unsigned int cmd, unsigned long arg) | |||
743 | mutex_lock(&stream->device->lock); | 743 | mutex_lock(&stream->device->lock); |
744 | switch (_IOC_NR(cmd)) { | 744 | switch (_IOC_NR(cmd)) { |
745 | case _IOC_NR(SNDRV_COMPRESS_IOCTL_VERSION): | 745 | case _IOC_NR(SNDRV_COMPRESS_IOCTL_VERSION): |
746 | put_user(SNDRV_COMPRESS_VERSION, | 746 | retval = put_user(SNDRV_COMPRESS_VERSION, |
747 | (int __user *)arg) ? -EFAULT : 0; | 747 | (int __user *)arg) ? -EFAULT : 0; |
748 | break; | 748 | break; |
749 | case _IOC_NR(SNDRV_COMPRESS_GET_CAPS): | 749 | case _IOC_NR(SNDRV_COMPRESS_GET_CAPS): |