From patchwork Wed Apr 8 20:35:50 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Estevam X-Patchwork-Id: 6182501 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 1D0E69F2EC for ; Wed, 8 Apr 2015 20:36:10 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 5D72D2037D for ; Wed, 8 Apr 2015 20:36:09 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id 04B132037B for ; Wed, 8 Apr 2015 20:36:08 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id 9EEE2265747; Wed, 8 Apr 2015 22:36:06 +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.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, NO_DNS_FOR_FROM, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=no version=3.3.1 Received: from alsa0.perex.cz (localhost [IPv6:::1]) by alsa0.perex.cz (Postfix) with ESMTP id 145FD2606E6; Wed, 8 Apr 2015 22:35:58 +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 1EEDC260702; Wed, 8 Apr 2015 22:35:57 +0200 (CEST) Received: from mail-la0-f54.google.com (mail-la0-f54.google.com [209.85.215.54]) by alsa0.perex.cz (Postfix) with ESMTP id 189462605AF for ; Wed, 8 Apr 2015 22:35:51 +0200 (CEST) Received: by laat2 with SMTP id t2so67934328laa.1 for ; Wed, 08 Apr 2015 13:35:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=KZb2oIG5FIylSCD5kmdC51sqsx/J2oUXkJtZohyJPJA=; b=VN3dB1QnqmpbWl8RAG+fqB5r8yZtxlv4aVw1U7GqB4b4ANgKEQIW+Pnp8zNWzrPxt1 4x3VGEuJCH4t463F6B/h9bGsA+WImHr+Bn0LAsk2Ph29zi+s8A+WMG4LZwoTyS/VhINM tyMdxVFiAYrNsA9o+f5WS2D7BFWI4AE+35tf+broYHBNnzKJlFPG0SA3JuWlmvtLWA2H j4WvzUx1uUCbXkIFG+L+9BAmxUELudm0dTj9St6rR14Ro1Qol8dfMr56yQjVh7sup9aG q99jsyLUvgMqoGIIzuVhFuREFs/w9tpH5mgZ2LakeTPiEg/UGSXT9OfaxNkx0z9wnxQ6 58ww== MIME-Version: 1.0 X-Received: by 10.112.145.230 with SMTP id sx6mr24870651lbb.70.1428525350465; Wed, 08 Apr 2015 13:35:50 -0700 (PDT) Received: by 10.152.20.229 with HTTP; Wed, 8 Apr 2015 13:35:50 -0700 (PDT) In-Reply-To: <55258272.2010205@metafoo.de> References: <55258272.2010205@metafoo.de> Date: Wed, 8 Apr 2015 17:35:50 -0300 Message-ID: From: Fabio Estevam To: Lars-Peter Clausen Cc: Nicolin Chen , "alsa-devel@alsa-project.org" , Mark Brown , Russell King Subject: Re: [alsa-devel] ASoC: Failed to create DAPM debugfs 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 On Wed, Apr 8, 2015 at 4:33 PM, Lars-Peter Clausen wrote: > Does the card name contain a '/' like in 'S/PDIF'? Yes, it does. I also tried to change it like this: ,but I still get the warning. Thanks, Fabio Estevam --- a/sound/soc/fsl/imx-spdif.c +++ b/sound/soc/fsl/imx-spdif.c @@ -37,8 +37,8 @@ static int imx_spdif_audio_probe(struct platform_device *pdev) goto end; } - data->dai.name = "S/PDIF PCM"; - data->dai.stream_name = "S/PDIF PCM"; + data->dai.name = "SPDIF PCM"; + data->dai.stream_name = "SPDIF PCM"; data->dai.codec_dai_name = "snd-soc-dummy-dai"; data->dai.codec_name = "snd-soc-dummy"; data->dai.cpu_of_node = spdif_np;