* [GIT PULL] sound fixes for 7.3-rc4
@ 2026-09-17 14:07 Takashi Iwai
2026-09-17 17:12 ` pr-tracker-bot
0 siblings, 1 reply; 2+ messages in thread
From: Takashi Iwai @ 2026-09-17 14:07 UTC (permalink / raw)
To: Linus Torvalds
Cc: Mark Brown, Liam Girdwood, Linux Sound Mailing List,
Linux Kernel Mailing List
Linus,
please pull sound fixes for v7.3-rc4 from:
git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git tags/sound-7.3-rc4
The topmost commit is 546b928da0427b0d6c663cbb992bd7bfa9ac7971
----------------------------------------------------------------
sound fixes for 7.3-rc4
A collection of small fixes. Most of them are device-specific fixes
while there are a few core fixes. The continued flux, but not too
scaring yet. Some highlights below.
ALSA Core:
- Fix potential UAF after asynchronous card release
- Fix a race condition in PCM timer initialization order
USB-Audio:
- Hardening fixes for issues reported by fuzzer for 6fire, bcd2000,
and implicit FB packets
- Fix double list addition in implicit FB handling
- Quirks for AVerMedia GC553Pro and Behringer FCA1616
HD-Audio:
- Quirks / fixes for HP OmniBook 7, OMEN 15, and Victus 15 laptops
ASoC:
- Support for DAI link codec channel mask to avoid mismatches
- Fix HDMI-codec channel status change report
- Fixes for various codecs and platforms: Realtek rt712/rt721
(calibration, reset fixes), Cirrus Logic (empty EFI variable
validation, capture channel fixup), AMD ACP SoundWire (bounds
checks, refactorings), ADAU1977 (OF match table support, SPI
cleanups), ES8336 (Huawei Matebook B3-420 quirk), UX500 (macro fix)
----------------------------------------------------------------
Ai Chao (1):
ASoC: Intel: sof_es8336: Add a quirk for Huawei Matebook B3-420
Alvin Šipraga (3):
ASoC: adau1977: make the Kconfig symbols user selectable
ASoC: adau1977-spi: drop __maybe_unused and of_match_ptr()
ASoC: adau1977-i2c: add OF match table for I2C
Asai Neko (1):
ALSA: usb-audio: skip the broken mute control on AVerMedia GC553Pro
HyeongJun An (1):
ASoC: hdmi-codec: Report a change when the channel status moves
Jack Yu (1):
ASoC: rt712-sdca: reconfigure PLL2 to fix calibration time-out
Jaeho Cho (1):
ALSA: hda/realtek: Enable mute LEDs on HP OmniBook 7 17-dc0xxx
Jiangshan Yi (1):
ASoC: codecs: rt712-sdca-dmic: fix uninitialized stream_config->type
Kitty Makin (1):
ALSA: usb-audio: Add capture quirk for Behringer FCA1616
Krish Gulati (1):
ALSA: hda/realtek: Add quirk for HP Victus 15-fa1xxx (MB 8BB1) mute LED
Nguyen Ngoc Thang (2):
ALSA: pcm: set timer->private_data before registering the PCM timer
ALSA: usb-audio: fix list_add double-add in push_back_to_ready_list
Oder Chiou (1):
ASoC: rt721: Reset codec to fix abnormal sound
Richard Fitzgerald (7):
ASoC: wm_adsp: Firmware search progress log should not look like an error
ASoC: Rename snd_soc_dai_link_ch_map.ch_mask to cpu_ch_mask
ASoC: Add codec_ch_mask to snd_soc_dai_link_ch_map
ASoC: soc-pcm: Apply snd_soc_dai_link_ch_map.codec_ch_mask to codec params
ASoC: sdw_utils: Set snd_soc_dai_link_ch_map.codec_ch_mask for capture
ASoC: sdw_utils: cs_amp: Delete bogus and incorrect capture channel fixup
ASoC: cs-amp-lib: Prevent NULL pointer if efi variable is zero length
Sasha Levin (1):
ASoC: ux500: Parenthesize MSP_{RX,TX}_CLKPOL_BIT() arguments
Slavin Liu (1):
ALSA: hda: trace PCM open only after assigning a stream
Takashi Iwai (2):
ALSA: bcd2000: Fix race between rawmidi and disconnect
ALSA: core: Fix potential UAF after asynchronous card release
Vijendar Mukunda (4):
ASoC: amd: acp: bounds-check SoundWire link ID in machine drivers
ASoC: amd: acp: refactor codec config count in SOF SoundWire machine driver
ASoC: amd: acp: fix ffs() operator precedence for SoundWire link ID
ASoC: amd: acp: fix card name length warning in SOF SoundWire machine driver
Xavier Goffin (1):
ALSA: hda/realtek: Add mute LED quirk for HP OMEN 15-ax
Xiang Mei (2):
ALSA: usb-audio: Clamp implicit feedback packet count to URB capacity
ALSA: 6fire: fix OOB write from device-reported iso length
Yuho Choi (1):
ALSA: virtio: reset device before deleting virtqueues
---
include/sound/soc.h | 3 +-
include/sound/soc_sdw_utils.h | 2 -
sound/core/init.c | 3 +-
sound/core/pcm_timer.c | 7 ++-
sound/hda/codecs/realtek/alc269.c | 11 ++++-
sound/hda/common/controller.c | 2 +-
sound/soc/amd/acp/acp-sdw-legacy-mach.c | 14 +++++-
sound/soc/amd/acp/acp-sdw-sof-mach.c | 23 ++++++---
sound/soc/codecs/Kconfig | 4 +-
sound/soc/codecs/adau1977-i2c.c | 9 ++++
sound/soc/codecs/adau1977-spi.c | 12 ++---
sound/soc/codecs/cs-amp-lib.c | 2 +
sound/soc/codecs/hdmi-codec.c | 6 ++-
sound/soc/codecs/rt712-sdca-dmic.c | 14 ++----
sound/soc/codecs/rt712-sdca-sdw.c | 8 +++
sound/soc/codecs/rt712-sdca.c | 86 +++++++++++++++++++++++++++++++--
sound/soc/codecs/rt712-sdca.h | 18 +++++++
sound/soc/codecs/rt721-sdca-sdw.c | 3 ++
sound/soc/codecs/rt721-sdca.c | 17 +++++++
sound/soc/codecs/wm_adsp.c | 5 +-
sound/soc/intel/boards/sof_es8336.c | 9 ++++
sound/soc/sdw_utils/soc_sdw_cs_amp.c | 46 ------------------
sound/soc/sdw_utils/soc_sdw_utils.c | 24 +++++----
sound/soc/soc-pcm.c | 18 +++++--
sound/soc/ux500/ux500_msp_i2s.h | 4 +-
sound/usb/6fire/pcm.c | 12 ++++-
sound/usb/bcd2000/bcd2000.c | 33 ++++++++++---
sound/usb/card.h | 1 +
sound/usb/endpoint.c | 21 +++++---
sound/usb/implicit.c | 1 +
sound/usb/mixer_maps.c | 13 +++++
sound/virtio/virtio_card.c | 4 +-
32 files changed, 316 insertions(+), 119 deletions(-)
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [GIT PULL] sound fixes for 7.3-rc4
2026-09-17 14:07 [GIT PULL] sound fixes for 7.3-rc4 Takashi Iwai
@ 2026-09-17 17:12 ` pr-tracker-bot
0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2026-09-17 17:12 UTC (permalink / raw)
To: Takashi Iwai
Cc: Linus Torvalds, Mark Brown, Liam Girdwood,
Linux Sound Mailing List, Linux Kernel Mailing List
The pull request you sent on Thu, 17 Sep 2026 16:07:06 +0200:
> git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git tags/sound-7.3-rc4
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/4982d3552a3bf94de503acf93433277d08421de6
Thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-09-17 17:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-17 14:07 [GIT PULL] sound fixes for 7.3-rc4 Takashi Iwai
2026-09-17 17:12 ` pr-tracker-bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®