提交 e474e7fd 编写于 作者: C Chris Rorvick 提交者: Takashi Iwai

ALSA: line6: Return EIO if read/write not successful

Signed-off-by: NChris Rorvick <chris@rorvick.com>
Signed-off-by: NTakashi Iwai <tiwai@suse.de>
上级 f3dfd1be
......@@ -349,7 +349,7 @@ int line6_read_data(struct usb_line6 *line6, int 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, int 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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册