From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751694AbdFIJzy (ORCPT ); Fri, 9 Jun 2017 05:55:54 -0400 Received: from mx2.suse.de ([195.135.220.15]:33782 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751670AbdFIJzw (ORCPT ); Fri, 9 Jun 2017 05:55:52 -0400 Date: Fri, 09 Jun 2017 11:55:45 +0200 Message-ID: From: Takashi Iwai To: Linus Torvalds Cc: Mark Brown , Liam Girdwood , linux-kernel@vger.kernel.org Subject: [GIT PULL] sound fixes for 4.12-rc5 User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.8 Emacs/25.2 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Linus, please pull sound fixes for v4.12-rc5 from: git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git tags/sound-4.12-rc5 The topmost commit is ba3021b2c79b2fa9114f92790a99deb27a65b728 ---------------------------------------------------------------- sound fixes for 4.12-rc5 This update contains a slightly hight amount of changes due to the pending ASoC fixes. - ALSA timer core got a couple of fixes for races between read and ioctl, leading to potential read of uninitialized kmalloced memory - ASoC core fixed the de-registration pattern for use-after-free bug - The rewrite of probe code in ASoC Intel Skylake for i915 component - ASoC R-snd got a series of fixes for SSI - ASoC simple-card, atmel, da7213, and rt286 trivial fixes - HD-audio ALC269 quirk and rearrangement of quirk table ---------------------------------------------------------------- Adam Thomson (1): ASoC: da7213: Fix incorrect usage of bitwise '&' operator for SRM check Charles Keepax (1): MAINTAINERS: Update email address for patches to Wolfson parts Chris Chiu (1): ALSA: hda/realtek: Fix mic and headset jack sense on Asus X705UD Kuninori Morimoto (4): ASoC: rsnd: don't use PDTA bit for 24bit on SSI ASoC: rsnd: don't call free_irq() on Parent SSI ASoC: rsnd: SSI PIO adjust to 24bit mode ASoC: rsnd: fixup parent_clk_name of AUDIO_CLKOUTx Pardha Saradhi K (1): ASoC: Intel: Skylake: Fix IPC rx_list corruption Quentin Schulz (1): ASoC: atmel-classd: sync regcache when resuming Shreyas NC (1): ASoC: Intel: Skylake: Fix to parse consecutive string tkns in manifest Stefan Agner (1): ASoC: simple-card: fix mic jack initialization Takashi Iwai (4): ASoC: Fix use-after-free at card unregistration ALSA: hda/realtek - Reorder ALC269 ASUS quirk entries ALSA: timer: Fix race between read and ioctl ALSA: timer: Fix missing queue indices reset at SNDRV_TIMER_IOCTL_SELECT Vinod Koul (1): ASoC: Intel: Skylake: Move i915 registration to worker thread Yifeng Li (1): rt286: add Thinkpad Helix 2 to force_combo_jack_table --- MAINTAINERS | 2 +- sound/core/timer.c | 7 +- sound/pci/hda/patch_realtek.c | 11 ++- sound/soc/atmel/atmel-classd.c | 9 ++ sound/soc/codecs/da7213.c | 2 +- sound/soc/codecs/rt286.c | 7 ++ sound/soc/generic/simple-card.c | 2 +- sound/soc/intel/skylake/skl-sst-ipc.c | 5 + sound/soc/intel/skylake/skl-topology.c | 2 +- sound/soc/intel/skylake/skl.c | 162 ++++++++++++++++++--------------- sound/soc/intel/skylake/skl.h | 4 +- sound/soc/sh/rcar/adg.c | 6 +- sound/soc/sh/rcar/cmd.c | 1 + sound/soc/sh/rcar/core.c | 51 +++++++++++ sound/soc/sh/rcar/gen.c | 1 + sound/soc/sh/rcar/rsnd.h | 2 + sound/soc/sh/rcar/src.c | 12 ++- sound/soc/sh/rcar/ssi.c | 18 +++- sound/soc/sh/rcar/ssiu.c | 3 +- sound/soc/soc-core.c | 5 +- 20 files changed, 216 insertions(+), 96 deletions(-)