public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mark Brown <broonie@kernel.org>,
	Liam Girdwood <lgirdwood@gmail.com>,
	Linux Sound Mailing List <linux-sound@vger.kernel.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: [GIT PULL] sound fixes for 7.1-rc2
Date: Thu, 30 Apr 2026 08:58:27 +0200	[thread overview]
Message-ID: <87ik99ndd8.wl-tiwai@suse.de> (raw)

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(-)


             reply	other threads:[~2026-04-30  6:58 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-30  6:58 Takashi Iwai [this message]
2026-04-30 16:33 ` [GIT PULL] sound fixes for 7.1-rc2 pr-tracker-bot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87ik99ndd8.wl-tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=broonie@kernel.org \
    --cc=lgirdwood@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-sound@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox