提交 76df5296 编写于 作者: K Kazuki Oikawa 提交者: Takashi Iwai

ALSA: usb-audio: Fix quirks code is not called

snd_usb_{set_interface,ctl_msg}_quirk checks chip->usb_id to need
calling a quirks code. But existed code path that not calling
dev_set_drvdata in usb_audio_probe.

Fixes: 79289e24 ("ALSA: usb-audio: Refer to chip->usb_id for quirks and MIDI creation")
Signed-off-by: NKazuki Oikawa <k@oikw.org>
Cc: <stable@vger.kernel.org> # v4.6+
Reviewed-by: NTakashi Sakamoto <o-takashi@sakamocchi.jp>
Tested-by: NTakashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: NTakashi Iwai <tiwai@suse.de>
上级 d716fb03
...@@ -556,7 +556,6 @@ static int usb_audio_probe(struct usb_interface *intf, ...@@ -556,7 +556,6 @@ static int usb_audio_probe(struct usb_interface *intf,
goto __error; goto __error;
} }
chip = usb_chip[i]; chip = usb_chip[i];
dev_set_drvdata(&dev->dev, chip);
atomic_inc(&chip->active); /* avoid autopm */ atomic_inc(&chip->active); /* avoid autopm */
break; break;
} }
...@@ -582,6 +581,7 @@ static int usb_audio_probe(struct usb_interface *intf, ...@@ -582,6 +581,7 @@ static int usb_audio_probe(struct usb_interface *intf,
goto __error; goto __error;
} }
} }
dev_set_drvdata(&dev->dev, chip);
/* /*
* For devices with more than one control interface, we assume the * For devices with more than one control interface, we assume the
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册