From patchwork Fri May 27 20:26:59 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Robert Jarzmik X-Patchwork-Id: 9139061 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 8070B60759 for ; Fri, 27 May 2016 21:32:20 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 7230E28294 for ; Fri, 27 May 2016 21:32:20 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 66E37282F8; Fri, 27 May 2016 21:32:20 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.9 required=2.0 tests=BAYES_00,FREEMAIL_FROM, FSL_HELO_HOME,RCVD_IN_DNSWL_NONE autolearn=no version=3.3.1 Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E94CB28294 for ; Fri, 27 May 2016 21:32:19 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id 2A3142667A8; Fri, 27 May 2016 23:32:14 +0200 (CEST) Received: from alsa0.perex.cz (localhost [127.0.0.1]) by alsa0.perex.cz (Postfix) with ESMTP id C3C7D2664B0; Fri, 27 May 2016 23:26:01 +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 80C1C2664B0; Fri, 27 May 2016 23:26:00 +0200 (CEST) Received: from smtp.smtpout.orange.fr (smtp12.smtpout.orange.fr [80.12.242.134]) by alsa0.perex.cz (Postfix) with ESMTP id C983C266837 for ; Fri, 27 May 2016 22:27:29 +0200 (CEST) Received: from belgarion.home ([109.222.221.176]) by mwinf5d23 with ME id zYTJ1s00H3oxeSt03YTUqP; Fri, 27 May 2016 22:27:29 +0200 X-ME-Helo: belgarion.home X-ME-Date: Fri, 27 May 2016 22:27:29 +0200 X-ME-IP: 109.222.221.176 From: Robert Jarzmik To: Robert Jarzmik , Daniel Mack , Haojian Zhuang , Jaroslav Kysela , Takashi Iwai , Liam Girdwood , Mark Brown Date: Fri, 27 May 2016 22:26:59 +0200 Message-Id: <1464380819-19075-8-git-send-email-robert.jarzmik@free.fr> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1464380819-19075-1-git-send-email-robert.jarzmik@free.fr> References: <1464380819-19075-1-git-send-email-robert.jarzmik@free.fr> Cc: alsa-devel@alsa-project.org, patches@opensource.wolfsonmicro.com, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [alsa-devel] [RFC PATCH v2 7/7] ASoC: mioa701_wm9713: convert to new ac97 bus 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: , MIME-Version: 1.0 Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP Convert to the new auto-probing ac97 bus, which changes the device name. Signed-off-by: Robert Jarzmik --- sound/soc/pxa/mioa701_wm9713.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sound/soc/pxa/mioa701_wm9713.c b/sound/soc/pxa/mioa701_wm9713.c index 5c8f9db50a47..4ed10e6ff5d1 100644 --- a/sound/soc/pxa/mioa701_wm9713.c +++ b/sound/soc/pxa/mioa701_wm9713.c @@ -149,7 +149,7 @@ static struct snd_soc_dai_link mioa701_dai[] = { .stream_name = "AC97 HiFi", .cpu_dai_name = "pxa2xx-ac97", .codec_dai_name = "wm9713-hifi", - .codec_name = "wm9713-codec", + .codec_name = "pxa2xx-ac97:0", .init = mioa701_wm9713_init, .platform_name = "pxa-pcm-audio", .ops = &mioa701_ops, @@ -159,7 +159,7 @@ static struct snd_soc_dai_link mioa701_dai[] = { .stream_name = "AC97 Aux", .cpu_dai_name = "pxa2xx-ac97-aux", .codec_dai_name ="wm9713-aux", - .codec_name = "wm9713-codec", + .codec_name = "pxa2xx-ac97:0", .platform_name = "pxa-pcm-audio", .ops = &mioa701_ops, },