mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 18:13:41 +02:00
Merge branch 'for-linus' into for-next
Pull 6.19-devel branch for further development Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
commit
ae0a0c4520
|
|
@ -7296,6 +7296,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
|
|||
SND_PCI_QUIRK(0x1d72, 0x1901, "RedmiBook 14", ALC256_FIXUP_ASUS_HEADSET_MIC),
|
||||
SND_PCI_QUIRK(0x1d72, 0x1945, "Redmi G", ALC256_FIXUP_ASUS_HEADSET_MIC),
|
||||
SND_PCI_QUIRK(0x1d72, 0x1947, "RedmiBook Air", ALC255_FIXUP_XIAOMI_HEADSET_MIC),
|
||||
SND_PCI_QUIRK(0x1e39, 0xca14, "MEDION NM14LNL", ALC233_FIXUP_MEDION_MTL_SPK),
|
||||
SND_PCI_QUIRK(0x1ee7, 0x2078, "HONOR BRB-X M1010", ALC2XX_FIXUP_HEADSET_MIC),
|
||||
SND_PCI_QUIRK(0x1f66, 0x0105, "Ayaneo Portable Game Player", ALC287_FIXUP_CS35L41_I2C_2),
|
||||
SND_PCI_QUIRK(0x2014, 0x800a, "Positivo ARN50", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
|
||||
|
|
|
|||
|
|
@ -115,10 +115,8 @@ static int cix_ipbloq_hda_init(struct cix_ipbloq_hda *hda,
|
|||
bus->addr = res->start;
|
||||
|
||||
irq_id = platform_get_irq(pdev, 0);
|
||||
if (irq_id < 0) {
|
||||
dev_err(hda->dev, "failed to get the irq, err = %d\n", irq_id);
|
||||
if (irq_id < 0)
|
||||
return irq_id;
|
||||
}
|
||||
|
||||
err = devm_request_irq(hda->dev, irq_id, azx_interrupt,
|
||||
0, KBUILD_MODNAME, chip);
|
||||
|
|
|
|||
|
|
@ -1481,6 +1481,10 @@ int snd_usb_endpoint_prepare(struct snd_usb_audio *chip,
|
|||
return err;
|
||||
}
|
||||
|
||||
err = snd_usb_select_mode_quirk(chip, ep->cur_audiofmt);
|
||||
if (err < 0)
|
||||
return err;
|
||||
|
||||
err = snd_usb_init_pitch(chip, ep->cur_audiofmt);
|
||||
if (err < 0)
|
||||
return err;
|
||||
|
|
@ -1489,10 +1493,6 @@ int snd_usb_endpoint_prepare(struct snd_usb_audio *chip,
|
|||
if (err < 0)
|
||||
return err;
|
||||
|
||||
err = snd_usb_select_mode_quirk(chip, ep->cur_audiofmt);
|
||||
if (err < 0)
|
||||
return err;
|
||||
|
||||
/* for UAC2/3, enable the interface altset here at last */
|
||||
if (!iface_first) {
|
||||
err = endpoint_set_interface(chip, ep, true);
|
||||
|
|
|
|||
|
|
@ -34,6 +34,7 @@ static u64 parse_audio_format_i_type(struct snd_usb_audio *chip,
|
|||
{
|
||||
int sample_width, sample_bytes;
|
||||
u64 pcm_formats = 0;
|
||||
u64 dsd_formats = 0;
|
||||
|
||||
switch (fp->protocol) {
|
||||
case UAC_VERSION_1:
|
||||
|
|
@ -154,7 +155,9 @@ static u64 parse_audio_format_i_type(struct snd_usb_audio *chip,
|
|||
fp->iface, fp->altsetting, format);
|
||||
}
|
||||
|
||||
pcm_formats |= snd_usb_interface_dsd_format_quirks(chip, fp, sample_bytes);
|
||||
dsd_formats |= snd_usb_interface_dsd_format_quirks(chip, fp, sample_bytes);
|
||||
if (dsd_formats && !fp->dsd_dop)
|
||||
pcm_formats = dsd_formats;
|
||||
|
||||
return pcm_formats;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2221,7 +2221,7 @@ static const struct usb_audio_quirk_flags_table quirk_flags_table[] = {
|
|||
QUIRK_FLAG_IFACE_DELAY),
|
||||
DEVICE_FLG(0x0644, 0x8044, /* Esoteric D-05X */
|
||||
QUIRK_FLAG_ITF_USB_DSD_DAC | QUIRK_FLAG_CTL_MSG_DELAY |
|
||||
QUIRK_FLAG_IFACE_DELAY),
|
||||
QUIRK_FLAG_IFACE_DELAY | QUIRK_FLAG_FORCE_IFACE_RESET),
|
||||
DEVICE_FLG(0x0644, 0x804a, /* TEAC UD-301 */
|
||||
QUIRK_FLAG_ITF_USB_DSD_DAC | QUIRK_FLAG_CTL_MSG_DELAY |
|
||||
QUIRK_FLAG_IFACE_DELAY),
|
||||
|
|
@ -2229,7 +2229,13 @@ static const struct usb_audio_quirk_flags_table quirk_flags_table[] = {
|
|||
QUIRK_FLAG_FORCE_IFACE_RESET),
|
||||
DEVICE_FLG(0x0644, 0x806b, /* TEAC UD-701 */
|
||||
QUIRK_FLAG_ITF_USB_DSD_DAC | QUIRK_FLAG_CTL_MSG_DELAY |
|
||||
QUIRK_FLAG_IFACE_DELAY),
|
||||
QUIRK_FLAG_IFACE_DELAY | QUIRK_FLAG_FORCE_IFACE_RESET),
|
||||
DEVICE_FLG(0x0644, 0x807d, /* TEAC UD-507 */
|
||||
QUIRK_FLAG_ITF_USB_DSD_DAC | QUIRK_FLAG_CTL_MSG_DELAY |
|
||||
QUIRK_FLAG_IFACE_DELAY | QUIRK_FLAG_FORCE_IFACE_RESET),
|
||||
DEVICE_FLG(0x0644, 0x806c, /* Esoteric XD */
|
||||
QUIRK_FLAG_ITF_USB_DSD_DAC | QUIRK_FLAG_CTL_MSG_DELAY |
|
||||
QUIRK_FLAG_IFACE_DELAY | QUIRK_FLAG_FORCE_IFACE_RESET),
|
||||
DEVICE_FLG(0x06f8, 0xb000, /* Hercules DJ Console (Windows Edition) */
|
||||
QUIRK_FLAG_IGNORE_CTL_ERROR),
|
||||
DEVICE_FLG(0x06f8, 0xd002, /* Hercules DJ Console (Macintosh Edition) */
|
||||
|
|
@ -2388,6 +2394,8 @@ static const struct usb_audio_quirk_flags_table quirk_flags_table[] = {
|
|||
QUIRK_FLAG_CTL_MSG_DELAY_1M),
|
||||
DEVICE_FLG(0x30be, 0x0101, /* Schiit Hel */
|
||||
QUIRK_FLAG_IGNORE_CTL_ERROR),
|
||||
DEVICE_FLG(0x3255, 0x0000, /* Luxman D-10X */
|
||||
QUIRK_FLAG_ITF_USB_DSD_DAC | QUIRK_FLAG_CTL_MSG_DELAY),
|
||||
DEVICE_FLG(0x339b, 0x3a07, /* Synaptics HONOR USB-C HEADSET */
|
||||
QUIRK_FLAG_MIXER_PLAYBACK_MIN_MUTE),
|
||||
DEVICE_FLG(0x413c, 0xa506, /* Dell AE515 sound bar */
|
||||
|
|
@ -2431,6 +2439,8 @@ static const struct usb_audio_quirk_flags_table quirk_flags_table[] = {
|
|||
QUIRK_FLAG_DSD_RAW),
|
||||
VENDOR_FLG(0x2622, /* IAG Limited devices */
|
||||
QUIRK_FLAG_DSD_RAW),
|
||||
VENDOR_FLG(0x2772, /* Musical Fidelity devices */
|
||||
QUIRK_FLAG_DSD_RAW),
|
||||
VENDOR_FLG(0x278b, /* Rotel? */
|
||||
QUIRK_FLAG_DSD_RAW),
|
||||
VENDOR_FLG(0x292b, /* Gustard/Ess based devices */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user