From patchwork Tue Dec 17 10:52:43 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lucas Stach X-Patchwork-Id: 302085 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id B48152C009D for ; Tue, 17 Dec 2013 21:52:34 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752452Ab3LQKwd (ORCPT ); Tue, 17 Dec 2013 05:52:33 -0500 Received: from ns.lynxeye.de ([87.118.118.114]:42278 "EHLO lynxeye.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750966Ab3LQKwc (ORCPT ); Tue, 17 Dec 2013 05:52:32 -0500 Received: by lynxeye.de (Postfix, from userid 501) id 01B8C18B4266; Tue, 17 Dec 2013 11:52:29 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on lynxeye.de X-Spam-Level: X-Spam-Status: No, score=-2.9 required=4.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.1 Received: from tellur.localdomain (p54833003.dip0.t-ipconnect.de [84.131.48.3]) by lynxeye.de (Postfix) with ESMTPA id 29B2B18B4266; Tue, 17 Dec 2013 11:52:27 +0100 (CET) From: Lucas Stach To: Mark Brown Cc: swarren@wwwdotorg.org, alsa-devel@alsa-project.org, linux-tegra@vger.kernel.org, Mark Brown Subject: [PATCH v2 RESEND 1/2] ASOC: tegra: fix matching of AC97 components Date: Tue, 17 Dec 2013 11:52:43 +0100 Message-Id: <1387277564-4774-1-git-send-email-dev@lynxeye.de> X-Mailer: git-send-email 1.8.3.1 Sender: linux-tegra-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-tegra@vger.kernel.org Matching works completely based on the cpu of_node. Signed-off-by: Lucas Stach Acked-by: Stephen Warren --- v2: no changes CC: CC: Mark Brown CC: Stephen Warren --- sound/soc/tegra/tegra_wm9712.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sound/soc/tegra/tegra_wm9712.c b/sound/soc/tegra/tegra_wm9712.c index 5e11963..45b5789 100644 --- a/sound/soc/tegra/tegra_wm9712.c +++ b/sound/soc/tegra/tegra_wm9712.c @@ -55,7 +55,6 @@ static int tegra_wm9712_init(struct snd_soc_pcm_runtime *rtd) static struct snd_soc_dai_link tegra_wm9712_dai = { .name = "AC97 HiFi", .stream_name = "AC97 HiFi", - .cpu_dai_name = "tegra20-ac97", .codec_dai_name = "wm9712-hifi", .codec_name = "wm9712-codec", .init = tegra_wm9712_init,