[lm-sensors] [PATCH 1/4] hwmon: (pmbus) Drop check for PMBus revision register in probe function
Jean Delvare
khali at linux-fr.org
Sun Jul 3 09:46:05 CEST 2011
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 at ericsson.com>
> ---
> 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
More information about the lm-sensors
mailing list