OSDN Git Service

ALSA: usb-audio: Register card at the last interface
authorTakashi Iwai <tiwai@suse.de>
Sun, 4 Sep 2022 16:12:47 +0000 (18:12 +0200)
committerTakashi Iwai <tiwai@suse.de>
Tue, 6 Sep 2022 09:04:56 +0000 (11:04 +0200)
commit6392dcd1d0c7034ccf630ec55fc9e5810ecadf3b
tree1a2fcdd000bce3797068d53e21adf786d3934bef
parent16c5cde20e304cd900371b140cd53ecafe8d3de5
ALSA: usb-audio: Register card at the last interface

The USB-audio driver matches per interface, and as default, it
registers the card instance at the very first instance.  This can be a
problem for the devices that have multiple interfaces to be probed, as
the udev rule isn't applied properly for the later appearing
interfaces.  Although we introduced the delayed_register option and
the quirks for covering those shortcomings, it's nothing but a
workaround for specific devices.

This patch is an another attempt to fix the problem in a more generic
way.  Now the driver checks the whole USB device descriptor at the
very first time when an interface is attached to a sound card.  It
looks at each matching interface in the descriptor and remembers the
last matching one.  The snd_card_register() is invoked only when this
last interface is probed.

After this change, the quirks for the delayed registration become
superfluous, hence they are removed along with the patch.  OTOH, the
delayed_register option is still kept, as it might be useful for some
corner cases (e.g. a special driver overtakes the interface probe from
the standard driver, and the last interface probe may miss).

Link: https://lore.kernel.org/r/20220904161247.16461-1-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/usb/card.c
sound/usb/quirks.c
sound/usb/quirks.h
sound/usb/usbaudio.h