From patchwork Mon Jan 15 07:54:58 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ladislav Michl X-Patchwork-Id: 10163243 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 8A4AD60325 for ; Mon, 15 Jan 2018 07:55:04 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 743D8201A4 for ; Mon, 15 Jan 2018 07:55:04 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 689C528210; Mon, 15 Jan 2018 07:55:04 +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=-1.9 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_NONE, UNPARSEABLE_RELAY autolearn=ham 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 D1F31201A4 for ; Mon, 15 Jan 2018 07:55:03 +0000 (UTC) Received: from alsa0.perex.cz (localhost [127.0.0.1]) by alsa0.perex.cz (Postfix) with ESMTP id B487426742C; Mon, 15 Jan 2018 08:55:02 +0100 (CET) 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 71C35267439; Mon, 15 Jan 2018 08:55:01 +0100 (CET) Received: from cvs.linux-mips.org (eddie.linux-mips.org [148.251.95.138]) by alsa0.perex.cz (Postfix) with ESMTP id C84EF26731C for ; Mon, 15 Jan 2018 08:54:59 +0100 (CET) Received: (from localhost user: 'ladis' uid#1021 fake: STDIN (ladis@eddie.linux-mips.org)) by eddie.linux-mips.org id S23990488AbeAOHy7eauPu (ORCPT ); Mon, 15 Jan 2018 08:54:59 +0100 Date: Mon, 15 Jan 2018 08:54:58 +0100 From: Ladislav Michl To: alsa-devel@alsa-project.org Message-ID: <20180115075458.GF10762@lenoch> References: <20180115075213.GA10762@lenoch> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20180115075213.GA10762@lenoch> User-Agent: Mutt/1.9.2 (2017-12-15) Cc: Liam Girdwood , Nicolas Ferre , Takashi Iwai , Mark Brown , Alexandre Belloni , SF Markus Elfring Subject: [alsa-devel] [PATCH 5/5] ASoC: atmel_wm8904: Return -ENODEV when probe does not find OF node 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 Probe should fail with -ENODEV when called with NULL pdev->dev.of_node. Signed-off-by: Ladislav Michl --- sound/soc/atmel/atmel_wm8904.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sound/soc/atmel/atmel_wm8904.c b/sound/soc/atmel/atmel_wm8904.c index fbc10f61eb55..39a73c4d19ec 100644 --- a/sound/soc/atmel/atmel_wm8904.c +++ b/sound/soc/atmel/atmel_wm8904.c @@ -85,10 +85,8 @@ static int atmel_asoc_wm8904_dt_init(struct platform_device *pdev) struct snd_soc_dai_link *dailink = &atmel_asoc_wm8904_dailink; int ret; - if (!np) { - dev_err(&pdev->dev, "only device tree supported\n"); - return -EINVAL; - } + if (!np) + return -ENODEV; ret = snd_soc_of_parse_card_name(card, "atmel,model"); if (ret) {