public inbox for linux-hwmon@vger.kernel.org
 help / color / mirror / Atom feed
From: Guenter Roeck <linux@roeck-us.net>
To: SF Markus Elfring <elfring@users.sourceforge.net>
Cc: linux-hwmon@vger.kernel.org, Jean Delvare <jdelvare@suse.com>,
	LKML <linux-kernel@vger.kernel.org>,
	kernel-janitors@vger.kernel.org
Subject: Re: [PATCH] hwmon/amc6821: Use common error handling code in amc6821_init_client()
Date: Tue, 24 Oct 2017 13:18:12 -0700	[thread overview]
Message-ID: <20171024201812.GA5769@roeck-us.net> (raw)
In-Reply-To: <8cc80503-aa2b-bb5e-ab40-fa31b401b6a2@users.sourceforge.net>

On Tue, Oct 24, 2017 at 10:10:13PM +0200, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Tue, 24 Oct 2017 22:04:20 +0200
> 
> * Add two jump targets so that a bit of exception handling can be better
>   reused at the end of this function.
> 
>   This issue was detected by using the Coccinelle software.
> 
> * Delete the local variable "err" which became unnecessary
>   with this refactoring.
> 
> Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>

Nack; I am not a friend of that much verboseness to start with,
and I don't think the patch improves readability.

Guenter

> ---
>  drivers/hwmon/amc6821.c | 77 ++++++++++++++++++-------------------------------
>  1 file changed, 28 insertions(+), 49 deletions(-)
> 
> diff --git a/drivers/hwmon/amc6821.c b/drivers/hwmon/amc6821.c
> index 46b4e35fd555..5c067de3fdcf 100644
> --- a/drivers/hwmon/amc6821.c
> +++ b/drivers/hwmon/amc6821.c
> @@ -885,70 +885,42 @@ static int amc6821_detect(
>  static int amc6821_init_client(struct i2c_client *client)
>  {
>  	int config;
> -	int err = -EIO;
>  
>  	if (init) {
>  		config = i2c_smbus_read_byte_data(client, AMC6821_REG_CONF4);
> -
> -		if (config < 0) {
> -				dev_err(&client->dev,
> -			"Error reading configuration register, aborting.\n");
> -				return err;
> -		}
> +		if (config < 0)
> +			goto report_read_failure;
>  
>  		config |= AMC6821_CONF4_MODE;
> -
>  		if (i2c_smbus_write_byte_data(client, AMC6821_REG_CONF4,
> -				config)) {
> -			dev_err(&client->dev,
> -			"Configuration register write error, aborting.\n");
> -			return err;
> -		}
> +					      config))
> +			goto report_write_failure;
>  
>  		config = i2c_smbus_read_byte_data(client, AMC6821_REG_CONF3);
> -
> -		if (config < 0) {
> -			dev_err(&client->dev,
> -			"Error reading configuration register, aborting.\n");
> -			return err;
> -		}
> +		if (config < 0)
> +			goto report_read_failure;
>  
>  		dev_info(&client->dev, "Revision %d\n", config & 0x0f);
>  
>  		config &= ~AMC6821_CONF3_THERM_FAN_EN;
> -
>  		if (i2c_smbus_write_byte_data(client, AMC6821_REG_CONF3,
> -				config)) {
> -			dev_err(&client->dev,
> -			"Configuration register write error, aborting.\n");
> -			return err;
> -		}
> +					      config))
> +			goto report_write_failure;
>  
>  		config = i2c_smbus_read_byte_data(client, AMC6821_REG_CONF2);
> -
> -		if (config < 0) {
> -			dev_err(&client->dev,
> -			"Error reading configuration register, aborting.\n");
> -			return err;
> -		}
> +		if (config < 0)
> +			goto report_read_failure;
>  
>  		config &= ~AMC6821_CONF2_RTFIE;
>  		config &= ~AMC6821_CONF2_LTOIE;
>  		config &= ~AMC6821_CONF2_RTOIE;
> -		if (i2c_smbus_write_byte_data(client,
> -				AMC6821_REG_CONF2, config)) {
> -			dev_err(&client->dev,
> -			"Configuration register write error, aborting.\n");
> -			return err;
> -		}
> +		if (i2c_smbus_write_byte_data(client, AMC6821_REG_CONF2,
> +					      config))
> +			goto report_write_failure;
>  
>  		config = i2c_smbus_read_byte_data(client, AMC6821_REG_CONF1);
> -
> -		if (config < 0) {
> -			dev_err(&client->dev,
> -			"Error reading configuration register, aborting.\n");
> -			return err;
> -		}
> +		if (config < 0)
> +			goto report_read_failure;
>  
>  		config &= ~AMC6821_CONF1_THERMOVIE;
>  		config &= ~AMC6821_CONF1_FANIE;
> @@ -958,14 +930,21 @@ static int amc6821_init_client(struct i2c_client *client)
>  		else
>  			config &= ~AMC6821_CONF1_PWMINV;
>  
> -		if (i2c_smbus_write_byte_data(
> -				client, AMC6821_REG_CONF1, config)) {
> -			dev_err(&client->dev,
> -			"Configuration register write error, aborting.\n");
> -			return err;
> -		}
> +		if (i2c_smbus_write_byte_data(client, AMC6821_REG_CONF1,
> +					      config))
> +			goto report_write_failure;
>  	}
>  	return 0;
> +
> +report_read_failure:
> +	dev_err(&client->dev,
> +		"Error reading configuration register, aborting.\n");
> +	return -EIO;
> +
> +report_write_failure:
> +	dev_err(&client->dev,
> +		"Configuration register write error, aborting.\n");
> +	return -EIO;
>  }
>  
>  static int amc6821_probe(struct i2c_client *client,
> -- 
> 2.14.3
> 

  reply	other threads:[~2017-10-24 20:18 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-24 20:10 [PATCH] hwmon/amc6821: Use common error handling code in amc6821_init_client() SF Markus Elfring
2017-10-24 20:18 ` Guenter Roeck [this message]
2017-10-25  6:03   ` SF Markus Elfring

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20171024201812.GA5769@roeck-us.net \
    --to=linux@roeck-us.net \
    --cc=elfring@users.sourceforge.net \
    --cc=jdelvare@suse.com \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=linux-hwmon@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox