Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3e964432 authored by Clemens Ladisch's avatar Clemens Ladisch Committed by Jaroslav Kysela
Browse files

[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: default avatarClemens Ladisch <clemens@ladisch.de>
parent ede3531e
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -788,6 +788,10 @@ static const char *usb_error_string(int err)
		return "device disabled";
	case -EHOSTUNREACH:
		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 -EAGAIN:
	case -EFBIG: