Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id AF18CC7618B for ; Sat, 18 Mar 2023 15:53:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229841AbjCRPxg (ORCPT ); Sat, 18 Mar 2023 11:53:36 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43248 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229842AbjCRPxZ (ORCPT ); Sat, 18 Mar 2023 11:53:25 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D06032B2BE; Sat, 18 Mar 2023 08:53:15 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 8A802B8074D; Sat, 18 Mar 2023 15:53:14 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4F873C433EF; Sat, 18 Mar 2023 15:53:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1679154793; bh=VIC8yNIF5gb8H4Ss/veeFWQBDBzRAUYMI7xaHoyLXNI=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=g1/XvBucTyM/JnLrfOELRPJPtmSKDTeJRTmatUDoM8fO5ATOgavaQY5wFYWEQvfIA y3u/5DCZkGN5iwFbY0zdAdIpTfKsnrIOH1pyg37/TjWwZDWHKaFj9in0Wtkrgt7ZUB 99oHWm5JpQdMJEDxltGQAhcec+9YW/9CgKfZE9oMMPY0ZD1uXVTeQP/MHBQY2Zxru4 xQXfUhh0HJmv81l4sk1Z3ke6MbFrfmV8T6bjH/p6ZA+uPJtVwx1QmqL84btdWaFf+G WfrHYefnyf5jQsf8ak0j3jsUlJUIGYh9E9nw2aMvytKDgvhLd2rw8l7+iemGfhdgeP YqlHISFdlZTCQ== Date: Sat, 18 Mar 2023 16:08:06 +0000 From: Jonathan Cameron To: Cc: , , , , , , , , Subject: Re: [PATCH v3] iio: adc: at91-sama5d2_adc: remove dead code in `at91_adc_probe` Message-ID: <20230318160806.7943aba4@jic23-huawei> In-Reply-To: References: <20230314070130.60581-1-chengziqiu@hust.edu.cn> X-Mailer: Claws Mail 4.1.1 (GTK 3.24.37; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 14 Mar 2023 10:12:23 +0000 wrote: > On 14.03.2023 09:01, Cheng Ziqiu wrote: > > EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe > > > >>From the comment of platform_get_irq, it only returns non-zero IRQ > > number and negative error number, other than zero. > > > > Fix this by removing the if condition. > > > > Signed-off-by: Cheng Ziqiu > > Reviewed-by: Dongliang Mu > > Reviewed-by: Claudiu Beznea Applied to the togreg branch of iio.git - initially pushed out as testing for 0-day to take a look at it. Thanks, Jonathan > > > > --- > > v2->v3: Change subject to make it regular. > > v1->v2: Change commit message from SoB to Reviewed-by. > > drivers/iio/adc/at91-sama5d2_adc.c | 6 +----- > > 1 file changed, 1 insertion(+), 5 deletions(-) > > > > diff --git a/drivers/iio/adc/at91-sama5d2_adc.c b/drivers/iio/adc/at91-sama5d2_adc.c > > index 50d02e5fc6fc..168399092590 100644 > > --- a/drivers/iio/adc/at91-sama5d2_adc.c > > +++ b/drivers/iio/adc/at91-sama5d2_adc.c > > @@ -2400,12 +2400,8 @@ static int at91_adc_probe(struct platform_device *pdev) > > st->dma_st.phys_addr = res->start; > > > > st->irq = platform_get_irq(pdev, 0); > > - if (st->irq <= 0) { > > - if (!st->irq) > > - st->irq = -ENXIO; > > - > > + if (st->irq < 0) > > return st->irq; > > - } > > > > st->per_clk = devm_clk_get(&pdev->dev, "adc_clk"); > > if (IS_ERR(st->per_clk)) > > -- > > 2.34.1 > > >