* [GIT PULL] sound fixes for 7.1-rc2
@ 2026-04-30 6:58 Takashi Iwai
2026-04-30 16:33 ` pr-tracker-bot
0 siblings, 1 reply; 2+ messages in thread
From: Takashi Iwai @ 2026-04-30 6:58 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.1-rc2 from:
git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git tags/sound-7.1-rc2
The topmost commit is e052a1f7199260eda4d6ca08a59c3b98738f8491
----------------------------------------------------------------
sound fixes for 7.1-rc2
A bunch of small fixes. One minor fix is found in the core side for
data race in PCM OSS layer, while remaining changes are various
device-specific fixes and quirks.
- Core: PCM OSS data race fix
- HD-audio: Fixes for TAS2781, CS35L56, and Realtek/Conexant quirks;
avoidance of a WARN_ON for HDMI channel mapping
- USB-audio: Improvements in UAC3 parsing robustness (leaks, size
checks) and fixes for potential endless loops
- ASoC: Driver-specific fixes for CS35L56, Intel bytcr_wm5102,
Spacemit, AW88395, and others, plus a new quirk for Steam Deck OLED.
- Misc: A UAF fix in aloop driver, division by zero fix in ua101
driver and leak fixes in caiaq driver
----------------------------------------------------------------
Abhinav Mahadevan (1):
ALSA: usb-audio: Fix quirk entry placement for PreSonus AudioBox USB
Ajay Kumar Nandam (1):
ASoC: codecs: wcd937x: fix AUX PA sequencing and mixer controls
Bard Liao (1):
ASoC: SOF: Intel: add an empty adr_link
Christian A. Ehrhardt (1):
ASoC: codecs: ab8500: Fix casting of private data
Cássio Gabriel (4):
ALSA: hda: cs35l56: Propagate ASP TX source control errors
ALSA: aloop: Fix peer runtime UAF during format-change stop
ALSA: usb-audio: Fix UAC3 cluster descriptor size check
ASoC: Intel: bytcr_wm5102: Fix MCLK leak on platform_clock_control error
Deepanshu Kartikey (1):
ALSA: caiaq: fix usb_dev refcount leak on probe failure
Guilherme G. Piccoli (1):
ASoC: amd: acp: Add DMI quirk for Valve Steam Deck OLED
James Calligeros (2):
ASoC: tas2764: Mark die temp register as volatile
ASoC: tas2770: Fix order of operations for temperature calculation
Li Jian (1):
ASoC: ES8389: convert to devm_clk_get_optional() to get clock
Naser Al-Asbahi (1):
ALSA: hda/realtek: Add micmute LED quirk for Acer Aspire A315-44P
Richard Fitzgerald (2):
ASoC: cs35l56: Fix illegal writes to OTP_MEM registers
ALSA: hda: cs35l56: Fix uninitialized value in cs35l56_hda_read_acpi()
Rosalie Wanders (1):
ALSA: usb-audio: apply quirk for Playstation PDP Riffmaster
Sasha Levin (2):
ASoC: tegra: Remove stale snd-soc-tegra-utils composite module definition
ALSA: hda: Remove duplicate cmedia entries in codecs Makefile
SeungJu Cheon (1):
sound: ua101: fix division by zero at probe
Shenghao Ding (1):
ALSA: hda/tas2781: Fix incorrect bit update for non-book-zero or book 0 pages >1
Takashi Iwai (6):
ALSA: pcm: oss: Fix data race at accessing runtime.oss.trigger
ALSA: caiaq: Fix potentially leftover ep1_in_urb at error path
ALSA: caiaq: Don't abort when no input device is available
ALSA: usb-audio: Fix potential leak of pd at parsing UAC3 streams
ALSA: usb-audio: Avoid potential endless loop in convert_chmap_v3()
ALSA: hda: Avoid WARN_ON() for HDMI chmap slot checks
Troy Mitchell (2):
ASoC: spacemit: move hw constraints from hw_params to startup
ASoC: spacemit: adjust FIFO trigger threshold to half FIFO size
Yuxuan Qiu (1):
ALSA: hda/realtek: enable mute LED support on ThinkBook 16p
wangdicheng (2):
ASoC: aw88395: Fix kernel panic caused by invalid GPIO error pointer
ALSA: hda/conexant: Fix missing error check for jack detection
---
sound/core/oss/pcm_oss.c | 29 +++++++++---
sound/drivers/aloop.c | 43 ++++++++++++------
sound/hda/codecs/Makefile | 2 -
sound/hda/codecs/conexant.c | 8 +++-
sound/hda/codecs/realtek/alc269.c | 14 +++++-
sound/hda/codecs/side-codecs/cs35l56_hda.c | 31 ++++++++-----
sound/hda/codecs/side-codecs/cs35l56_hda.h | 1 +
sound/hda/codecs/side-codecs/tas2781_hda_spi.c | 14 ++++--
sound/hda/core/hdmi_chmap.c | 11 +++--
sound/soc/amd/acp/acp-legacy-mach.c | 2 +-
sound/soc/amd/acp/acp-mach-common.c | 22 +++++++--
sound/soc/amd/acp/acp-mach.h | 4 ++
sound/soc/amd/acp/acp-sof-mach.c | 2 +-
sound/soc/codecs/ab8500-codec.c | 6 +--
sound/soc/codecs/aw88395/aw88395.c | 9 ++--
sound/soc/codecs/cs35l56-shared.c | 7 ++-
sound/soc/codecs/es8389.c | 2 +-
sound/soc/codecs/tas2764.c | 1 +
sound/soc/codecs/tas2770.c | 4 +-
sound/soc/codecs/wcd937x.c | 26 ++++++++++-
sound/soc/intel/boards/bytcr_wm5102.c | 1 +
sound/soc/sof/intel/hda.c | 3 +-
sound/soc/spacemit/k1_i2s.c | 49 +++++++++++++-------
sound/soc/tegra/Makefile | 1 -
sound/usb/caiaq/device.c | 6 +--
sound/usb/caiaq/input.c | 2 +-
sound/usb/misc/ua101.c | 7 +++
sound/usb/mixer.c | 10 +++++
sound/usb/quirks-table.h | 4 +-
sound/usb/quirks.c | 2 +-
sound/usb/stream.c | 62 +++++++++++---------------
sound/usb/stream.h | 3 +-
32 files changed, 266 insertions(+), 122 deletions(-)
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [GIT PULL] sound fixes for 7.1-rc2
2026-04-30 6:58 [GIT PULL] sound fixes for 7.1-rc2 Takashi Iwai
@ 2026-04-30 16:33 ` pr-tracker-bot
0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2026-04-30 16:33 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, 30 Apr 2026 08:58:27 +0200:
> git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git tags/sound-7.1-rc2
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/2aa0a3691711257b888d6024a492eb9fd1e8f52a
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-04-30 16:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-30 6:58 [GIT PULL] sound fixes for 7.1-rc2 Takashi Iwai
2026-04-30 16:33 ` 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