]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ALSA: usb-audio: Fake also USB device id when alias is given
authorTakashi Iwai <tiwai@suse.de>
Fri, 31 Mar 2017 09:19:19 +0000 (11:19 +0200)
committerTakashi Iwai <tiwai@suse.de>
Fri, 31 Mar 2017 09:19:19 +0000 (11:19 +0200)
Recently snd-usb-audio driver received a new option, quirk_alias, to
allow user to apply the existing quirk for a different device.  This
works for many quirks as is, but some still need more tune-ups:
namely, some quirks check the USB vendor/device IDs in various places,
thus it doesn't work as long as the ID is different from the expected
one.

With this patch, the driver stores the aliased USB ID, so that these
rest quirks per device ID are applied.  The transition to use the
cached USB ID was already done in the past, so what we needed now is
only to overwrite chip->usb_id.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/usb/card.c

index f36cb068dad331700c087ee765a5a2a82ac3e233..6640277a725b6565adfb9665077903ff51940c34 100644 (file)
@@ -332,6 +332,7 @@ static int snd_usb_audio_dev_free(struct snd_device *device)
 static int snd_usb_audio_create(struct usb_interface *intf,
                                struct usb_device *dev, int idx,
                                const struct snd_usb_audio_quirk *quirk,
+                               unsigned int usb_id,
                                struct snd_usb_audio **rchip)
 {
        struct snd_card *card;
@@ -381,8 +382,7 @@ static int snd_usb_audio_create(struct usb_interface *intf,
        atomic_set(&chip->usage_count, 0);
        atomic_set(&chip->shutdown, 0);
 
-       chip->usb_id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
-                             le16_to_cpu(dev->descriptor.idProduct));
+       chip->usb_id = usb_id;
        INIT_LIST_HEAD(&chip->pcm_list);
        INIT_LIST_HEAD(&chip->ep_list);
        INIT_LIST_HEAD(&chip->midi_list);
@@ -569,7 +569,7 @@ static int usb_audio_probe(struct usb_interface *intf,
                            (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
                            (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
                                err = snd_usb_audio_create(intf, dev, i, quirk,
-                                                          &chip);
+                                                          id, &chip);
                                if (err < 0)
                                        goto __error;
                                chip->pm_intf = intf;