Commit 2026d24e authored by Takashi Iwai's avatar Takashi Iwai

ALSA: rme96: Return error code in PCM copy ops

Just pass the error code returned from copy_from_user_toio() and
copy_to_user_fromio() helpers.

Spotted by coverity CID 114119.
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 329bbd9b
...@@ -350,9 +350,8 @@ snd_rme96_playback_copy(struct snd_pcm_substream *substream, ...@@ -350,9 +350,8 @@ snd_rme96_playback_copy(struct snd_pcm_substream *substream,
struct rme96 *rme96 = snd_pcm_substream_chip(substream); struct rme96 *rme96 = snd_pcm_substream_chip(substream);
count <<= rme96->playback_frlog; count <<= rme96->playback_frlog;
pos <<= rme96->playback_frlog; pos <<= rme96->playback_frlog;
copy_from_user_toio(rme96->iobase + RME96_IO_PLAY_BUFFER + pos, src, return copy_from_user_toio(rme96->iobase + RME96_IO_PLAY_BUFFER + pos, src,
count); count);
return 0;
} }
static int static int
...@@ -365,9 +364,8 @@ snd_rme96_capture_copy(struct snd_pcm_substream *substream, ...@@ -365,9 +364,8 @@ snd_rme96_capture_copy(struct snd_pcm_substream *substream,
struct rme96 *rme96 = snd_pcm_substream_chip(substream); struct rme96 *rme96 = snd_pcm_substream_chip(substream);
count <<= rme96->capture_frlog; count <<= rme96->capture_frlog;
pos <<= rme96->capture_frlog; pos <<= rme96->capture_frlog;
copy_to_user_fromio(dst, rme96->iobase + RME96_IO_REC_BUFFER + pos, return copy_to_user_fromio(dst, rme96->iobase + RME96_IO_REC_BUFFER + pos,
count); count);
return 0;
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment