[ALSA] usb-audio: add error message about missing split iso support
Modules: USB generic driver Add an error message for -ENOSYS for situations when split iso support is needed but not enabled. Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
This commit is contained in:
parent
ede3531e8c
commit
3e964432f5
|
@ -788,6 +788,10 @@ static const char *usb_error_string(int err)
|
||||||
return "device disabled";
|
return "device disabled";
|
||||||
case -EHOSTUNREACH:
|
case -EHOSTUNREACH:
|
||||||
return "device suspended";
|
return "device suspended";
|
||||||
|
#ifndef CONFIG_USB_EHCI_SPLIT_ISO
|
||||||
|
case -ENOSYS:
|
||||||
|
return "enable CONFIG_USB_EHCI_SPLIT_ISO to play through a hub";
|
||||||
|
#endif
|
||||||
case -EINVAL:
|
case -EINVAL:
|
||||||
case -EAGAIN:
|
case -EAGAIN:
|
||||||
case -EFBIG:
|
case -EFBIG:
|
||||||
|
|
Loading…
Reference in New Issue