linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] sound fixes for 5.7-rc1
@ 2020-04-09 14:14 Takashi Iwai
  2020-04-10 20:40 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Takashi Iwai @ 2020-04-09 14:14 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Mark Brown, Liam Girdwood, Linux Kernel Mailing List

Linus,

please pull sound fixes for v5.7-rc1 from:

  git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git tags/sound-fix-5.7-rc1

The topmost commit is ddd5609fe8b682fbe81f71b27561f14d3611d856

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

sound fixes for 5.7-rc1

A collection of small fixes gathered since the previous update.

* ALSA core:
- Regression fix for OSS PCM emulation

* ASoC:
- Trivial fixes in reg bit mask ops, DAPM, DPCM and topology
- Lots of fixes for Intel-based devices
- Minor fixes for AMD, STM32, Qualcomm, Realtek

* Others
- Fixes for the bugs in mixer handling in HD-audio and ice1724
  drivers that were caught by the recent kctl validator
- New quirks for HD-audio and USB-audio

Also this contains a fix for EDD firmware fix, which slipped
from anyone's hands.

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

Akshu Agrawal (1):
      ASoC: AMD: Clear format bits before setting them

Cezary Rojewski (4):
      ASoC: Intel: broadwell: Remove ignore_suspend flag from SSP0 dai link
      ASoC: Intel: haswell: Remove ignore_suspend flag from SSP0 dai link
      ASoC: Intel: bdw-rt5677: Remove ignore_suspend flag from SSP0 dai link
      ASoC: Intel: bdw-rt5650: Remove ignore_suspend flag from SSP0 dai link

Emmanuel Pescosta (1):
      ALSA: usb-audio: Add registration quirk for Kingston HyperX Cloud Alpha S

Fabio Estevam (1):
      dt-bindings: sound: cs42l51: Remove unneeded I2C unit name

František Kučera (1):
      ALSA: usb-audio: Add Pioneer DJ DJM-250MK2 quirk

Hans de Goede (7):
      ALSA: hda/realtek - Add quirk for Lenovo Carbon X1 8th gen
      ASoC: SOF: Turn "firmware boot complete" message into a dbg message
      ASoC: Intel: atom: Take the drv->lock mutex before calling sst_send_slot_map()
      ASoC: Intel: atom: Check drv->lock is locked in sst_fill_and_send_cmd_unlocked
      ASoC: Intel: atom: Fix uninitialized variable compiler warning
      ASoC: Intel: bytcr_rt5640: Add quirk for MPMAN MPWIN895CL tablet
      ASoC: rt5645: Add platform-data for Medion E1239T

Julia Lawall (1):
      ASoC: stm32: sai: Add missing cleanup

Kailang Yang (2):
      ALSA: hda/realtek - Add supported new mute Led for HP
      ALSA: hda/realtek - Add HP new mute led supported for ALC236

Mike Willard (1):
      ASoC: cs4270: pull reset GPIO low then high

Pierre-Louis Bossart (1):
      ASoC: soc-dai: fix DAI startup/shutdown sequence

Stephan Gerhold (1):
      ASoC: qcom: q6asm-dai: Add SNDRV_PCM_INFO_BATCH flag

Takashi Iwai (9):
      ASoC: bcm: Fix pointer cast warning
      edd: Use scnprintf() for avoiding potential buffer overflow
      ALSA: pcm: oss: Fix regression by buffer overflow fix
      ALSA: pcm: oss: Fix regression by buffer overflow fix (again)
      ALSA: hda: Fix potential access overflow in beep helper
      ALSA: ice1724: Fix invalid access for enumerated ctl items
      ALSA: hda/realtek - Add quirk for MSI GL63
      ALSA: usb-audio: Add mixer workaround for TRX40 and co
      ALSA: hda: Add driver blacklist

YueHaibing (1):
      ASoC: rt5682: Fix build error without CONFIG_I2C

이경택 (4):
      ASoC: fix regwmask
      ASoC: dapm: connect virtual mux with default value
      ASoC: dpcm: allow start or stop during pause for backend
      ASoC: topology: use name_prefix for new kcontrol

---
 .../devicetree/bindings/sound/cirrus,cs42l51.yaml  |   2 +-
 drivers/firmware/edd.c                             |   6 +-
 include/sound/soc-dai.h                            |   2 +-
 sound/core/oss/pcm_plugin.c                        |  22 ++--
 sound/pci/hda/hda_beep.c                           |   6 +-
 sound/pci/hda/hda_intel.c                          |  16 +++
 sound/pci/hda/patch_realtek.c                      | 127 +++++++++++++++++++++
 sound/pci/ice1712/prodigy_hifi.c                   |   4 +-
 sound/soc/amd/raven/acp3x-i2s.c                    |   1 +
 sound/soc/amd/raven/acp3x.h                        |   2 +
 sound/soc/bcm/bcm63xx-pcm-whistler.c               |   2 +-
 sound/soc/codecs/cs4270.c                          |  40 ++++++-
 sound/soc/codecs/rt5645.c                          |   8 ++
 sound/soc/codecs/rt5682.c                          |   5 +-
 sound/soc/intel/atom/sst-atom-controls.c           |   4 +
 sound/soc/intel/atom/sst/sst_pvt.c                 |   2 +-
 sound/soc/intel/boards/bdw-rt5650.c                |   1 -
 sound/soc/intel/boards/bdw-rt5677.c                |   1 -
 sound/soc/intel/boards/broadwell.c                 |   1 -
 sound/soc/intel/boards/bytcr_rt5640.c              |  11 ++
 sound/soc/intel/boards/haswell.c                   |   1 -
 sound/soc/qcom/qdsp6/q6asm-dai.c                   |   4 +-
 sound/soc/soc-dai.c                                |   8 +-
 sound/soc/soc-dapm.c                               |   8 +-
 sound/soc/soc-ops.c                                |   4 +-
 sound/soc/soc-pcm.c                                |   6 +-
 sound/soc/soc-topology.c                           |   2 +-
 sound/soc/sof/loader.c                             |   2 +-
 sound/soc/stm/stm32_sai_sub.c                      |   4 +-
 sound/usb/mixer_maps.c                             |  28 +++++
 sound/usb/quirks-table.h                           |  42 +++++++
 sound/usb/quirks.c                                 |   1 +
 32 files changed, 329 insertions(+), 44 deletions(-)


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

* Re: [GIT PULL] sound fixes for 5.7-rc1
  2020-04-09 14:14 [GIT PULL] sound fixes for 5.7-rc1 Takashi Iwai
@ 2020-04-10 20:40 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2020-04-10 20:40 UTC (permalink / raw)
  To: Takashi Iwai
  Cc: Linus Torvalds, Mark Brown, Liam Girdwood, Linux Kernel Mailing List

The pull request you sent on Thu, 09 Apr 2020 16:14:52 +0200:

> git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git tags/sound-fix-5.7-rc1

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

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/prtracker

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

end of thread, other threads:[~2020-04-10 20:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-09 14:14 [GIT PULL] sound fixes for 5.7-rc1 Takashi Iwai
2020-04-10 20:40 ` 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).