aboutsummaryrefslogtreecommitdiffstats
path: root/sound/usb
diff options
context:
space:
mode:
authorChris Rorvick <chris@rorvick.com>2015-02-11 00:03:15 -0500
committerTakashi Iwai <tiwai@suse.de>2015-02-11 04:37:43 -0500
commite474e7fd404b9e516f1c90a1c3f485e21be34c15 (patch)
treefc44d8d5eb6940a880b024db0be003e7ec763e7d /sound/usb
parentf3dfd1be08cc55f930f32e714fb1967630c47991 (diff)
ALSA: line6: Return EIO if read/write not successful
Signed-off-by: Chris Rorvick <chris@rorvick.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb')
-rw-r--r--sound/usb/line6/driver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/usb/line6/driver.c b/sound/usb/line6/driver.c
index f2ee8046271a..6c2d418b53f1 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, int address, void *data,
349 dev_err(line6->ifcdev, 349 dev_err(line6->ifcdev,
350 "length mismatch (expected %d, got %d)\n", 350 "length mismatch (expected %d, got %d)\n",
351 (int)datalen, (int)len); 351 (int)datalen, (int)len);
352 return -EINVAL; 352 return -EIO;
353 } 353 }
354 354
355 /* receive the result: */ 355 /* receive the result: */
@@ -415,7 +415,7 @@ int line6_write_data(struct usb_line6 *line6, int address, void *data,
415 return -EIO; 415 return -EIO;
416 } else if (status != 0) { 416 } else if (status != 0) {
417 dev_err(line6->ifcdev, "write failed (error %d)\n", ret); 417 dev_err(line6->ifcdev, "write failed (error %d)\n", ret);
418 return -EINVAL; 418 return -EIO;
419 } 419 }
420 420
421 return 0; 421 return 0;