Re: [PATCH 1/4] hwmon: (pmbus) Drop check for PMBus revision register in probe function

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Guenter,

Sorry for the (too) late review.

On Thu, 30 Jun 2011 10:29:50 -0700, Guenter Roeck wrote:
> Some PMBus devices do not support the PMBus revision register, so don't check
> if it exists.

This was the only use of PMBUS_REVISION. Should its definition be kept
in pmbus.h?

> Signed-off-by: Guenter Roeck <guenter.roeck@xxxxxxxxxxxx>
> ---
>  drivers/hwmon/pmbus_core.c |    8 ++------
>  1 files changed, 2 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/hwmon/pmbus_core.c b/drivers/hwmon/pmbus_core.c
> index 354770e..bd613e7 100644
> --- a/drivers/hwmon/pmbus_core.c
> +++ b/drivers/hwmon/pmbus_core.c
> @@ -1430,12 +1430,8 @@ int pmbus_do_probe(struct i2c_client *client, const struct i2c_device_id *id,
>  	i2c_set_clientdata(client, data);
>  	mutex_init(&data->update_lock);
>  
> -	/*
> -	 * Bail out if status register or PMBus revision register
> -	 * does not exist.
> -	 */
> -	if (i2c_smbus_read_byte_data(client, PMBUS_STATUS_BYTE) < 0
> -	    || i2c_smbus_read_byte_data(client, PMBUS_REVISION) < 0) {
> +	/* Bail out if PMBus status register does not exist. */
> +	if (i2c_smbus_read_byte_data(client, PMBUS_STATUS_BYTE) < 0) {
>  		dev_err(&client->dev,
>  			"Status or revision register not found\n");

This error message should be updated accordingly.

>  		ret = -ENODEV;


-- 
Jean Delvare

_______________________________________________
lm-sensors mailing list
lm-sensors@xxxxxxxxxxxxxx
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors


[Index of Archives]     [Linux Kernel]     [Linux Hardware Monitoring]     [Linux USB Devel]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Yosemite Backpacking]

  Powered by Linux