Received: by 2002:ac0:950e:0:0:0:0:0 with SMTP id f14csp597495imc; Sat, 16 Mar 2019 09:53:38 -0700 (PDT) X-Google-Smtp-Source: APXvYqwIV1v48tylI/FYjltL//h2VBqdLO9Kj0c3M+v18gSMEota7rAwxvxe7Iv4G+BgVc9rGWpJ X-Received: by 2002:a62:ea0f:: with SMTP id t15mr10334212pfh.124.1552755218496; Sat, 16 Mar 2019 09:53:38 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1552755218; cv=none; d=google.com; s=arc-20160816; b=O1cbf3Mc7wHjVh8ddWhbLmIDMLupCT69Oy8j3eWN/0B65mi0eg7zCIGTn1GQn/FmmB icNuYee0VVrvIWkwPVd5HlLlSCjDb2C6bcgwl7jtLl2p7AbYrLOO5MVtphCTV7/WJXlV Rxj4qzOuub2mJL5Ft7gCyoVnHUyiYWZIhHXarj1PCsmmzlp1fWTWEZ8NTKaWtf0X0aoC 18KigbvYxrTvzhakbSwHLOz6PVYalP5EmoEEcYB3xjr1j5PjEsbqsIgYvaY+oH+A4Xo/ 2ztQeLsJmbHIVVVr6pP/MteDJezIvRW7fDNKBOaRALQwyFauKCkvhzQWhdAoGtcdA+kC NKfg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:subject:cc:to:from:date; bh=AmffJNymwxFDwpJDEiuGwwOWQFKNyEktri0IylnwdjQ=; b=SGcVDihiOEE5ZnhYKGokz9pEokuUHMnSA478G7CW6sp1yCg/zlJGdzQHU3aOEj/a3N o5B8okPIAffvkeDaXdBXDzdJSfDkGthzac1Tr8hcDpyImxriixMpAU72BwIe4cERcwvc dzIhX14cqf7j0aaAfbYI8PYLeIunI1xJPZUNV6bvjR26VORzv7FONQ+Lmt7Ta01IhzHk 38xQrev4AnxjVy/TMRTeZwK/0SWG8V32pH+s6D18g8Xrnmf6quVMzOwuKpVIBJGP2ndl EfxjJWWlOdba8heQ0wud8Jo82WGFe7FirDJ2UgZxLNnXLvd7cO2eXQjeNrauCarh4U8T 2HYg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id r13si4673771pgr.213.2019.03.16.09.53.23; Sat, 16 Mar 2019 09:53:38 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727012AbfCPQwk (ORCPT + 99 others); Sat, 16 Mar 2019 12:52:40 -0400 Received: from saturn.retrosnub.co.uk ([46.235.226.198]:45354 "EHLO saturn.retrosnub.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726629AbfCPQwk (ORCPT ); Sat, 16 Mar 2019 12:52:40 -0400 Received: from archlinux (cpc91196-cmbg18-2-0-cust659.5-4.cable.virginm.net [81.96.234.148]) by saturn.retrosnub.co.uk (Postfix; Retrosnub mail submission) with ESMTPSA id 9014B9E6A82; Sat, 16 Mar 2019 16:52:38 +0000 (GMT) Date: Sat, 16 Mar 2019 16:52:37 +0000 From: Jonathan Cameron To: Mircea Caprioru Cc: , , , , Subject: Re: [PATCH 2/2] staging: iio: adc: ad7192: Report error directly in ad7192_setup Message-ID: <20190316165237.6b4b5e8e@archlinux> In-Reply-To: <20190316164519.5faf1238@archlinux> References: <20190315111425.14275-1-mircea.caprioru@analog.com> <20190315111425.14275-2-mircea.caprioru@analog.com> <20190316164519.5faf1238@archlinux> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, 16 Mar 2019 16:45:19 +0000 Jonathan Cameron wrote: > On Fri, 15 Mar 2019 13:14:25 +0200 > Mircea Caprioru wrote: > > > This patch removes the goto out statement thus ensuring that an error is > > report as soon as it occurs. This gives more information and improves > > readability. > No problem with the patch, but I'm not sure why it gives more information? > Gone from printing an useless error message to printing none. > > I'll just drop that bit of the description in favour of code readability. > Hope you don't mind! Patch is also wrong as that out is used by other gotos... I guess this is because it's dependent on the patch you sent later on Friday. I'll reorder, but please be careful of this in future. If patches are in separate series posted as the same time they really need to be independent. Jonathan > > Jonathan > > > > Signed-off-by: Mircea Caprioru > > --- > > drivers/staging/iio/adc/ad7192.c | 13 +++++-------- > > 1 file changed, 5 insertions(+), 8 deletions(-) > > > > diff --git a/drivers/staging/iio/adc/ad7192.c b/drivers/staging/iio/adc/ad7192.c > > index ebab75bdeed7..27f962b8c4ef 100644 > > --- a/drivers/staging/iio/adc/ad7192.c > > +++ b/drivers/staging/iio/adc/ad7192.c > > @@ -236,13 +236,13 @@ static int ad7192_setup(struct ad7192_state *st, > > /* reset the serial interface */ > > ret = ad_sd_reset(&st->sd, 48); > > if (ret < 0) > > - goto out; > > + return ret; > > usleep_range(500, 1000); /* Wait for at least 500us */ > > > > /* write/read test for device presence */ > > ret = ad_sd_read_reg(&st->sd, AD7192_REG_ID, 1, &id); > > if (ret) > > - goto out; > > + return ret; > > > > id &= AD7192_ID_MASK; > > > > @@ -310,15 +310,15 @@ static int ad7192_setup(struct ad7192_state *st, > > > > ret = ad_sd_write_reg(&st->sd, AD7192_REG_MODE, 3, st->mode); > > if (ret) > > - goto out; > > + return ret; > > > > ret = ad_sd_write_reg(&st->sd, AD7192_REG_CONF, 3, st->conf); > > if (ret) > > - goto out; > > + return ret; > > > > ret = ad7192_calibrate_all(st); > > if (ret) > > - goto out; > > + return ret; > > > > /* Populate available ADC input ranges */ > > for (i = 0; i < ARRAY_SIZE(st->scale_avail); i++) { > > @@ -332,9 +332,6 @@ static int ad7192_setup(struct ad7192_state *st, > > } > > > > return 0; > > -out: > > - dev_err(&st->sd.spi->dev, "setup failed\n"); > > - return ret; > > } > > > > static ssize_t >