[alsa-devel] [PATCH 4/6] ALSA: line6: Return EIO if read/write not successful
Takashi Iwai
tiwai at suse.de
Wed Feb 11 10:43:13 CET 2015
At Tue, 10 Feb 2015 23:03:15 -0600,
Chris Rorvick wrote:
>
> Signed-off-by: Chris Rorvick <chris at rorvick.com>
Applied, thanks.
Takashi
> ---
> sound/usb/line6/driver.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/sound/usb/line6/driver.c b/sound/usb/line6/driver.c
> index 2a33f3e..f8e2eb0 100644
> --- a/sound/usb/line6/driver.c
> +++ b/sound/usb/line6/driver.c
> @@ -349,7 +349,7 @@ int line6_read_data(struct usb_line6 *line6, u16 address, void *data,
> dev_err(line6->ifcdev,
> "length mismatch (expected %d, got %d)\n",
> (int)datalen, (int)len);
> - return -EINVAL;
> + return -EIO;
> }
>
> /* receive the result: */
> @@ -415,7 +415,7 @@ int line6_write_data(struct usb_line6 *line6, u16 address, void *data,
> return -EIO;
> } else if (status != 0) {
> dev_err(line6->ifcdev, "write failed (error %d)\n", ret);
> - return -EINVAL;
> + return -EIO;
> }
>
> return 0;
> --
> 2.1.0
>
More information about the Alsa-devel
mailing list