From patchwork Mon Jun 8 19:49:38 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Takashi Iwai X-Patchwork-Id: 6567621 X-Patchwork-Delegate: tiwai@suse.de Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 8110B9F2F4 for ; Mon, 8 Jun 2015 19:50:00 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 621CF20498 for ; Mon, 8 Jun 2015 19:49:59 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id 22AC420490 for ; Mon, 8 Jun 2015 19:49:58 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id CB6DA261A96; Mon, 8 Jun 2015 21:49:56 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 Received: from alsa0.perex.cz (localhost [IPv6:::1]) by alsa0.perex.cz (Postfix) with ESMTP id 6DC2D2619FA; Mon, 8 Jun 2015 21:49:49 +0200 (CEST) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id 78D752619FF; Mon, 8 Jun 2015 21:49:47 +0200 (CEST) Received: from mx2.suse.de (cantor2.suse.de [195.135.220.15]) by alsa0.perex.cz (Postfix) with ESMTP id 61809260712 for ; Mon, 8 Jun 2015 21:49:40 +0200 (CEST) X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay1.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 1D027AC62; Mon, 8 Jun 2015 19:49:39 +0000 (UTC) Date: Mon, 08 Jun 2015 21:49:38 +0200 Message-ID: From: Takashi Iwai To: Mark Brown In-Reply-To: <20150608175109.GL14071@sirena.org.uk> References: <20150608175109.GL14071@sirena.org.uk> 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/24.5 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Cc: alsa-devel@alsa-project.org, Liam Girdwood Subject: Re: [alsa-devel] [GIT PULL] ASoC updates for v4.2 X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP At Mon, 8 Jun 2015 18:51:09 +0100, Mark Brown wrote: > > The following changes since commit c65b99f046843d2455aa231747b5a07a999a9f3d: > > Linux 4.1-rc6 (2015-05-31 19:01:07 -0700) > > are available in the git repository at: > > git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git tags/asoc-v4.2 > > for you to fetch changes up to 11e688862c4c8162119a4ca51c3326555966c8bb: > > Merge remote-tracking branches 'asoc/topic/wm8994', 'asoc/topic/wm8996' and 'asoc/topic/zx' into asoc-next (2015-06-05 18:55:07 +0100) > > ---------------------------------------------------------------- > ASoC: Updates for v4.2 > > The big thing this release has been Liam's addition of topology support > to the core. We've also seen quite a bit of driver work and the > continuation of Lars' refactoring for component support. > > - Support for loading ASoC topology maps from firmware, intended to be > used to allow self-describing DSP firmware images to be built which > can map controls added by the DSP to userspace without the kernel > needing to know about individual DSP firmwares. > - Lots of refactoring to avoid direct access to snd_soc_codec where > it's not needed supporting future refactoring. > - Big refactoring and cleanup serieses for the Wolfson ADSP and TI > TAS2552 drivers. > - Support for TI TAS571x power amplifiers. > - Support for Qualcomm APQ8016 and ZTE ZX296702 SoCs. > - Support for x86 systems with RT5650 and Qualcomm Storm. Thanks, pulled. But I had to apply the following fix for suppressing a compile warning. Now merged in for-next branch. Takashi -- 8< -- From: Takashi Iwai Subject: [PATCH] ASoC: intel: Remove unused variable hsw The recent fix left a variable declaration without usage. sound/soc/intel/haswell/sst-haswell-pcm.c:1349:18: warning: unused variable ‘hsw’ [-Wunused-variable] Fixes: edd8ed496b98 ('ASoC: Intel: handle haswell pcm suspend including runtime modules freeing') Signed-off-by: Takashi Iwai --- sound/soc/intel/haswell/sst-haswell-pcm.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sound/soc/intel/haswell/sst-haswell-pcm.c b/sound/soc/intel/haswell/sst-haswell-pcm.c index e593e7a4b7a7..1aa819c7e09b 100644 --- a/sound/soc/intel/haswell/sst-haswell-pcm.c +++ b/sound/soc/intel/haswell/sst-haswell-pcm.c @@ -1346,7 +1346,6 @@ static void hsw_pcm_complete(struct device *dev) static int hsw_pcm_prepare(struct device *dev) { struct hsw_priv_data *pdata = dev_get_drvdata(dev); - struct sst_hsw *hsw = pdata->hsw; struct hsw_pcm_data *pcm_data; int i, err;