From patchwork Mon Sep 3 16:59:33 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Russell King X-Patchwork-Id: 1416961 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id 995D540AB9 for ; Thu, 6 Sep 2012 16:23:48 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1T9eXK-0005Q3-MF; Thu, 06 Sep 2012 16:02:37 +0000 Received: from [2002:4e20:1eda::1] (helo=caramon.arm.linux.org.uk) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1T8Zzr-0006P0-Qa for linux-arm-kernel@lists.infradead.org; Mon, 03 Sep 2012 16:59:36 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=arm.linux.org.uk; s=caramon; h=Date:Sender:Message-Id:Subject:Cc:Cc:To:From:References:In-Reply-To; bh=g5wArMRw1JdBqJC+dLAL14wupaVh0JQWQ17ggKRlBG4=; b=Fitm6aQ/2NPHs7U2OsDB+KINpYlpJj1pW/ZsKwdq/0S/bAjLwBCJOTCzYvloN9KXf+CScrJ+1eqLpVsnuB+J4zDQHTfggbvXysPv9Iw1ss67t5jHciz8JTHE/9Hr5DoxIGWlHpMvJ+mlVN4ZoYJNuPFqsCkoYs7U/lkSNpXOg9c=; Received: from e0022681537dd.dyn.arm.linux.org.uk ([2002:4e20:1eda:1:222:68ff:fe15:37dd]:38493 helo=rmk-PC.arm.linux.org.uk) by caramon.arm.linux.org.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1T8Zzp-0007aK-PK; Mon, 03 Sep 2012 17:59:33 +0100 Received: from rmk by rmk-PC.arm.linux.org.uk with local (Exim 4.76) (envelope-from ) id 1T8Zzp-0002vv-7e; Mon, 03 Sep 2012 17:59:33 +0100 In-Reply-To: <20120903165832.GA31511@n2100.arm.linux.org.uk> References: <20120903165832.GA31511@n2100.arm.linux.org.uk> From: Russell King To: linux-arm-kernel@lists.infradead.org,linux-omap@vger.kernel.org Subject: [RFC 2/3] Fix "ASoC: dmaengine: Don't use runtime private data for dmaengine data" Message-Id: Date: Mon, 03 Sep 2012 17:59:33 +0100 X-Bad-Reply: References and In-Reply-To but no 'Re:' in Subject. X-Spam-Note: CRM114 invocation failed X-Spam-Score: -1.2 (-) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-1.2 points) pts rule name description ---- ---------------------- -------------------------------------------------- -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature 0.8 RDNS_NONE Delivered to internal network by a host with no rDNS X-Mailman-Approved-At: Thu, 06 Sep 2012 10:43:39 -0400 Cc: alsa-devel@alsa-project.org, Takashi Iwai , Mark Brown , Jaroslav Kysela , Santosh Shilimkar , Liam Girdwood X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org The above commit was not initializing the correct substream runtime member with the ASoC DMA engine runtime data. Fix that. Signed-off-by: Russell King --- sound/soc/soc-dmaengine-pcm.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/sound/soc/soc-dmaengine-pcm.c b/sound/soc/soc-dmaengine-pcm.c index 27fa5ad..6fb9a2a 100644 --- a/sound/soc/soc-dmaengine-pcm.c +++ b/sound/soc/soc-dmaengine-pcm.c @@ -293,7 +293,7 @@ int snd_dmaengine_pcm_open(struct snd_pcm_substream *substream, return ret; } - substream->runtime->private_data = prtd; + substream->runtime->dmaengine_data = prtd; return 0; }