mbox series

[GIT,PULL] ASoC fixes for v6.14-rc6

Message ID 3e8be5877ad35b6bc8fb2d148378ea90.broonie@kernel.org (mailing list archive)
State New
Headers show
Series [GIT,PULL] ASoC fixes for v6.14-rc6 | expand

Pull-request

https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git tags/asoc-fix-v6.14-rc6

Message

Mark Brown March 12, 2025, 2:08 p.m. UTC
The following changes since commit 7eb172143d5508b4da468ed59ee857c6e5e01da6:

  Linux 6.14-rc5 (2025-03-02 11:48:20 -0800)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git tags/asoc-fix-v6.14-rc6

for you to fetch changes up to ed92bc5264c4357d4fca292c769ea9967cd3d3b6:

  ASoC: codecs: wm0010: Fix error handling path in wm0010_spi_probe() (2025-03-11 13:51:52 +0000)

----------------------------------------------------------------
ASoC: Fixes for v6.14

The bulk of this is driver specific fixes, mostly unremarkable.  There's
also one core fix from Charles, fixing up confusion around the limiting
of maximum control values.

----------------------------------------------------------------
Alexey Klimov (1):
      ASoC: codecs: wsa884x: report temps to hwmon in millidegree of Celsius

Bard Liao (2):
      ASoC: rt1320: set wake_capable = 0 explicitly
      ASoC: rt722-sdca: add missing readable registers

Charles Keepax (2):
      ASoC: ops: Consistently treat platform_max as control value
      ASoC: cs42l43: Fix maximum ADC Volume

Christophe JAILLET (1):
      ASoC: codecs: wm0010: Fix error handling path in wm0010_spi_probe()

Maciej Strozek (1):
      ASoC: cs42l43: Add jack delay debounce after suspend

Peter Ujfalusi (1):
      ASoC: Intel: sof_sdw: Fix unlikely uninitialized variable use in create_sdw_dailinks()

Thomas Mizrahi (1):
      ASoC: amd: yc: Support mic on another Lenovo ThinkPad E16 Gen 2 model

Thorsten Blum (1):
      ASoC: tegra: Fix ADX S24_LE audio format

 include/sound/soc.h               |  5 ++++-
 sound/soc/amd/yc/acp6x-mach.c     |  7 +++++++
 sound/soc/codecs/cs42l43-jack.c   | 13 ++++++++++---
 sound/soc/codecs/cs42l43.c        | 17 +++++++++++++++--
 sound/soc/codecs/cs42l43.h        |  3 +++
 sound/soc/codecs/rt1320-sdw.c     |  3 +++
 sound/soc/codecs/rt722-sdca-sdw.c |  4 ++++
 sound/soc/codecs/wm0010.c         | 13 +++++++++++--
 sound/soc/codecs/wsa884x.c        |  4 ++--
 sound/soc/intel/boards/sof_sdw.c  |  2 +-
 sound/soc/soc-ops.c               | 15 +++++++--------
 sound/soc/tegra/tegra210_adx.c    |  4 ++--
 12 files changed, 69 insertions(+), 21 deletions(-)

Comments

Takashi Iwai March 12, 2025, 2:50 p.m. UTC | #1
On Wed, 12 Mar 2025 15:08:20 +0100,
Mark Brown wrote:
> 
> The following changes since commit 7eb172143d5508b4da468ed59ee857c6e5e01da6:
> 
>   Linux 6.14-rc5 (2025-03-02 11:48:20 -0800)
> 
> are available in the Git repository at:
> 
>   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git tags/asoc-fix-v6.14-rc6
> 
> for you to fetch changes up to ed92bc5264c4357d4fca292c769ea9967cd3d3b6:
> 
>   ASoC: codecs: wm0010: Fix error handling path in wm0010_spi_probe() (2025-03-11 13:51:52 +0000)
> 
> ----------------------------------------------------------------
> ASoC: Fixes for v6.14
> 
> The bulk of this is driver specific fixes, mostly unremarkable.  There's
> also one core fix from Charles, fixing up confusion around the limiting
> of maximum control values.
> 
> ----------------------------------------------------------------
> Alexey Klimov (1):
>       ASoC: codecs: wsa884x: report temps to hwmon in millidegree of Celsius
> 
> Bard Liao (2):
>       ASoC: rt1320: set wake_capable = 0 explicitly
>       ASoC: rt722-sdca: add missing readable registers
> 
> Charles Keepax (2):
>       ASoC: ops: Consistently treat platform_max as control value
>       ASoC: cs42l43: Fix maximum ADC Volume
> 
> Christophe JAILLET (1):
>       ASoC: codecs: wm0010: Fix error handling path in wm0010_spi_probe()
> 
> Maciej Strozek (1):
>       ASoC: cs42l43: Add jack delay debounce after suspend

This one causes a build error without CONFIG_PM.


Takashi