diff options
author | Andrej Krutak <dev@andree.sk> | 2016-11-30 00:12:51 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2016-11-30 00:16:14 +0300 |
commit | fc90172ba283b598b5497e968de47e3bc2800ed5 (patch) | |
tree | 425c4bf6bb8de1f4f0592b0e388a3c6694853f6b /sound/usb/line6/driver.h | |
parent | e59d8bb574f6d8097e7e14981440dc37425fddc6 (diff) | |
download | linux-fc90172ba283b598b5497e968de47e3bc2800ed5.tar.xz |
ALSA: line6: Claim pod x3 usb data interface
Userspace apps have to claim USB interfaces before using endpoints in
them (drivers/usb/core/devio.c:checkintf()). It's a lock mechanism so
that two "drivers" don't steal data from each other. Kernel drivers don't
have to claim interfaces to work - but they should, to lock out userspace.
While there, fix line6_properties struct to match checkpatch.pl.
Signed-off-by: Andrej Krutak <dev@andree.sk>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/line6/driver.h')
-rw-r--r-- | sound/usb/line6/driver.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sound/usb/line6/driver.h b/sound/usb/line6/driver.h index 7e3a3aada222..a5c2e9ae5f17 100644 --- a/sound/usb/line6/driver.h +++ b/sound/usb/line6/driver.h @@ -98,10 +98,11 @@ struct line6_properties { int altsetting; - unsigned ep_ctrl_r; - unsigned ep_ctrl_w; - unsigned ep_audio_r; - unsigned ep_audio_w; + unsigned int ctrl_if; + unsigned int ep_ctrl_r; + unsigned int ep_ctrl_w; + unsigned int ep_audio_r; + unsigned int ep_audio_w; }; /* Capability bits */ |