linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] sound fixes for 6.2-rc7
@ 2023-02-01 11:42 Takashi Iwai
  2023-02-01 20:02 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Takashi Iwai @ 2023-02-01 11:42 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Mark Brown, Liam Girdwood, Linux Kernel Mailing List

Linus,

please pull sound fixes for v6.2-rc7 from:

  git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git tags/sound-6.2-rc7

The topmost commit is c7a806d9ce6757ff56078674916e53bd859f242d

----------------------------------------------------------------

sound fixes for 6.2-rc7

A bit higher volume of changes than wished, but each change is
relatively small and the fix targets are mostly device-specific,
so those should be safe as a late stage merge.

The most significant LoC is about the memalloc helper fix, which
is applied only to Xen PV.  The other major parts are ASoC Intel
SOF and AVS fixes that are scattered as various small code
changes.  The rest are device-specific fixes and quirks for HD-
and USB-audio, FireWire and ASoC AMD / HDMI.

----------------------------------------------------------------

Amadeusz Sławiński (1):
      ASoC: Intel: avs: Implement PCI shutdown

Andy Shevchenko (6):
      ASoC: amd: acp-es8336: Drop reference count of ACPI device after use
      ASoC: Intel: bytcht_es8316: Drop reference count of ACPI device after use
      ASoC: Intel: bytcr_rt5651: Drop reference count of ACPI device after use
      ASoC: Intel: bytcr_rt5640: Drop reference count of ACPI device after use
      ASoC: Intel: bytcr_wm5102: Drop reference count of ACPI device after use
      ASoC: Intel: sof_es8336: Drop reference count of ACPI device after use

Arnd Bergmann (1):
      ASoC: cs42l56: fix DT probe

Artemii Karasev (1):
      ALSA: hda/via: Avoid potential array out-of-bound in add_secret_dac_path()

Bard Liao (3):
      ASoC: SOF: sof-audio: start with the right widget type
      ASoC: SOF: sof-audio: unprepare when swidget->use_count > 0
      ASoC: SOF: keep prepare/unprepare widgets in sink path

Cezary Rojewski (1):
      ALSA: hda: Do not unset preset when cleaning up codec

Dan Carpenter (1):
      ASoC: SOF: ipc4-mtrace: prevent underflow in sof_ipc4_priority_mask_dfs_write()

Jeremy Szu (1):
      ALSA: hda/realtek: fix mute/micmute LEDs, speaker don't work for a HP platform

Krzysztof Kozlowski (1):
      ASoC: codecs: wsa883x: correct playback min/max rates

Kuninori Morimoto (1):
      ASoC: hdmi-codec: zero clear HDMI pdata

Peter Ujfalusi (1):
      ASoC: SOF: sof-audio: prepare_widgets: Check swidget for NULL on sink failure

Pierre-Louis Bossart (4):
      ASoC: Intel: sof_rt5682: always set dpcm_capture for amplifiers
      ASoC: Intel: sof_cs42l42: always set dpcm_capture for amplifiers
      ASoC: Intel: sof_nau8825: always set dpcm_capture for amplifiers
      ASoC: Intel: sof_ssp_amp: always set dpcm_capture for amplifiers

Ranjani Sridharan (1):
      ASoC: SOF: sof-audio: skip prepare/unprepare if swidget is NULL

Syed Saba Kareem (1):
      ASoC: amd: yc: Add DMI support for new acer/emdoor platforms

Takashi Iwai (2):
      ALSA: usb-audio: Add FIXED_RATE quirk for JBL Quantum610 Wireless
      ALSA: memalloc: Workaround for Xen PV

Takashi Sakamoto (2):
      firewire: fix memory leak for payload of request subaction to IEC 61883-1 FCP region
      ALSA: firewire-motu: fix unreleased lock warning in hwdep device

Victor Shyba (1):
      ALSA: hda/realtek: Add Acer Predator PH315-54

fengwk (1):
      ASoC: amd: yc: Add Xiaomi Redmi Book Pro 15 2022 into DMI table

---
 drivers/firewire/core-cdev.c                       |  4 +-
 .../gpu/drm/bridge/synopsys/dw-hdmi-i2s-audio.c    |  1 +
 sound/core/memalloc.c                              | 87 +++++++++++++++++-----
 sound/firewire/motu/motu-hwdep.c                   |  4 +
 sound/pci/hda/hda_bind.c                           |  2 +
 sound/pci/hda/hda_codec.c                          |  1 -
 sound/pci/hda/patch_realtek.c                      |  2 +
 sound/pci/hda/patch_via.c                          |  3 +
 sound/soc/amd/acp-es8336.c                         |  6 +-
 sound/soc/amd/yc/acp6x-mach.c                      | 21 ++++++
 sound/soc/codecs/cs42l56.c                         |  6 --
 sound/soc/codecs/wsa883x.c                         |  4 +-
 sound/soc/intel/avs/core.c                         | 24 ++++++
 sound/soc/intel/boards/bytcht_es8316.c             | 20 +++--
 sound/soc/intel/boards/bytcr_rt5640.c              | 12 +--
 sound/soc/intel/boards/bytcr_rt5651.c              |  2 +-
 sound/soc/intel/boards/bytcr_wm5102.c              |  2 +-
 sound/soc/intel/boards/sof_cs42l42.c               |  3 +
 sound/soc/intel/boards/sof_es8336.c                | 14 ++--
 sound/soc/intel/boards/sof_nau8825.c               |  5 +-
 sound/soc/intel/boards/sof_rt5682.c                |  5 +-
 sound/soc/intel/boards/sof_ssp_amp.c               |  5 +-
 sound/soc/sof/ipc4-mtrace.c                        |  7 +-
 sound/soc/sof/sof-audio.c                          | 16 ++--
 sound/usb/quirks.c                                 |  2 +
 25 files changed, 189 insertions(+), 69 deletions(-)


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] sound fixes for 6.2-rc7
  2023-02-01 11:42 [GIT PULL] sound fixes for 6.2-rc7 Takashi Iwai
@ 2023-02-01 20:02 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2023-02-01 20:02 UTC (permalink / raw)
  To: Takashi Iwai
  Cc: Linus Torvalds, Mark Brown, Liam Girdwood, Linux Kernel Mailing List

The pull request you sent on Wed, 01 Feb 2023 12:42:03 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git tags/sound-6.2-rc7

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/ce18d3aa6a232ec80ece60ad5d6eb17bcac1744e

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:[~2023-02-01 20:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-01 11:42 [GIT PULL] sound fixes for 6.2-rc7 Takashi Iwai
2023-02-01 20:02 ` 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;
as well as URLs for NNTP newsgroup(s).