From patchwork Mon Mar 27 08:34:48 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Nyekjaer X-Patchwork-Id: 13188843 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 5157DC76195 for ; Mon, 27 Mar 2023 09:07:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232660AbjC0JGt (ORCPT ); Mon, 27 Mar 2023 05:06:49 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42012 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232384AbjC0JGJ (ORCPT ); Mon, 27 Mar 2023 05:06:09 -0400 Received: from www530.your-server.de (www530.your-server.de [188.40.30.78]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5E1B655A5 for ; Mon, 27 Mar 2023 02:05:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=geanix.com; s=default2211; h=Content-Transfer-Encoding:MIME-Version:References: In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID; bh=NhCskZWj5emexPdjn3uIw47avpX8Bt9NtqvL+U/jfag=; b=f0bVMI+4UdzTOpXtQOhc5By35H Fo37ovlF8Yq56KWJvXkYPXhq5c03330PyXaiciX11vNXXIZTPMHy3dAEV7r0y664aH+gHaL4Z30RD XBgMyl+FDwfDLsEoAXOE0VRvj7GuwWyl/wWIfqA024NPVbyYfIjbY0hHecGWsZlVdzX+Z/H7/yTLB Ic2Ht1LYM0vJubdLYcAXDdCFOePIHf0DTJFTfZ9aZcl9xTK/ukxhwtMMwW0UkS53mYhSh9+J3EsFV sNIGV712gLrBjRg/bj06Q5qfsMzcDElCw9m2qTTR75HntbfL2OfN4lyC6Jfls70jz6jufCuHZNc4e r/mx/oqg==; Received: from sslproxy06.your-server.de ([78.46.172.3]) by www530.your-server.de with esmtpsa (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1pgiJo-000PcY-Hf; Mon, 27 Mar 2023 10:35:08 +0200 Received: from [185.17.218.86] (helo=zen..) by sslproxy06.your-server.de with esmtpsa (TLSv1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pgiJo-000H3h-7e; Mon, 27 Mar 2023 10:35:08 +0200 From: Sean Nyekjaer To: jic23@kernel.org, lars@metafoo.de, alexandre.torgue@foss.st.com, nuno.sa@analog.com Cc: Sean Nyekjaer , linux-iio@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com Subject: [PATCH 2/3] iio: adc: stm32-adc: skip adc-diff-channels setup if none is present Date: Mon, 27 Mar 2023 10:34:48 +0200 Message-Id: <20230327083449.1098174-2-sean@geanix.com> X-Mailer: git-send-email 2.39.1 In-Reply-To: <20230327083449.1098174-1-sean@geanix.com> References: <20230327083449.1098174-1-sean@geanix.com> MIME-Version: 1.0 X-Authenticated-Sender: sean@geanix.com X-Virus-Scanned: Clear (ClamAV 0.103.8/26856/Mon Mar 27 09:24:05 2023) Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org If no adc differential channels are defined driver will fail with EINVAL: stm32-adc: probe of 48003000.adc:adc@0 failed with error -22 Fix this by skipping the initialization if no channels are defined. This applies only to the legacy way of initializing adc channels. Fixes: d7705f35448a ("iio: adc: stm32-adc: convert to device properties") Signed-off-by: Sean Nyekjaer --- drivers/iio/adc/stm32-adc.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/drivers/iio/adc/stm32-adc.c b/drivers/iio/adc/stm32-adc.c index d8e755d0cc52..a04fcb2dc80a 100644 --- a/drivers/iio/adc/stm32-adc.c +++ b/drivers/iio/adc/stm32-adc.c @@ -2008,16 +2008,15 @@ static int stm32_adc_get_legacy_chan_count(struct iio_dev *indio_dev, struct stm * to get the *real* number of channels. */ ret = device_property_count_u32(dev, "st,adc-diff-channels"); - if (ret < 0) - return ret; - - ret /= (int)(sizeof(struct stm32_adc_diff_channel) / sizeof(u32)); - if (ret > adc_info->max_channels) { - dev_err(&indio_dev->dev, "Bad st,adc-diff-channels?\n"); - return -EINVAL; - } else if (ret > 0) { - adc->num_diff = ret; - num_channels += ret; + if (ret > 0) { + ret /= (int)(sizeof(struct stm32_adc_diff_channel) / sizeof(u32)); + if (ret > adc_info->max_channels) { + dev_err(&indio_dev->dev, "Bad st,adc-diff-channels?\n"); + return -EINVAL; + } else if (ret > 0) { + adc->num_diff = ret; + num_channels += ret; + } } /* Optional sample time is provided either for each, or all channels */