mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
ALSA: usb-audio: Use snd_usb_ctl_msg() for Native Instruments quirk
snd_nativeinstruments_control_get() uses a stack as a buffer for usb_control_msg(), but it's basically not allowed. Replace the call with a safer helper, snd_usb_ctl_msg(), instead. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
6676f3081f
commit
01cb156edb
1 changed files with 2 additions and 2 deletions
|
@ -593,10 +593,10 @@ static int snd_nativeinstruments_control_get(struct snd_kcontrol *kcontrol,
|
||||||
if (mixer->chip->shutdown)
|
if (mixer->chip->shutdown)
|
||||||
ret = -ENODEV;
|
ret = -ENODEV;
|
||||||
else
|
else
|
||||||
ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), bRequest,
|
ret = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), bRequest,
|
||||||
USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
|
USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
|
||||||
0, wIndex,
|
0, wIndex,
|
||||||
&tmp, sizeof(tmp), 1000);
|
&tmp, sizeof(tmp));
|
||||||
up_read(&mixer->chip->shutdown_rwsem);
|
up_read(&mixer->chip->shutdown_rwsem);
|
||||||
|
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue