On Fri, 26 Aug 2011 06:52:38 -0700, Guenter Roeck wrote: > On Fri, Aug 26, 2011 at 08:29:53AM -0400, Jean Delvare wrote: > > On Thu, 25 Aug 2011 19:12:35 -0700, Guenter Roeck wrote: > > > @@ -78,11 +83,24 @@ static int adm1275_read_word_data(struct i2c_client *client, int page, int reg) > > > case PMBUS_VIRT_READ_VIN_MAX: > > > ret = pmbus_read_word_data(client, 0, ADM1275_PEAK_VIN); > > > break; > > > + case PMBUS_VIRT_READ_PIN_MAX: > > > + if (data->id != adm1276) { > > > + ret = -EINVAL; > > > + break; > > > + } > > > + ret = pmbus_read_word_data(client, 0, ADM1276_PEAK_PIN); > > > + break; > > > case PMBUS_VIRT_RESET_IOUT_HISTORY: > > > case PMBUS_VIRT_RESET_VOUT_HISTORY: > > > case PMBUS_VIRT_RESET_VIN_HISTORY: > > > ret = 0; > > > break; > > > + case PMBUS_VIRT_RESET_PIN_HISTORY: > > > + if (data->id != adm1276) > > > + ret = -EINVAL; > > > + else > > > + ret = 0; > > > + break; > > > > As with the previous patch, I am confused by the mix of -EINVAL and > > -ENODATA for unsupported features. > > Same as before - the calling code reacts differently. But then this means that your patch changes the behavior for the ADM1275, while it is supposed to only add support for the ADM1276. This can't be right, can it? -- Jean Delvare _______________________________________________ lm-sensors mailing list lm-sensors@xxxxxxxxxxxxxx http://lists.lm-sensors.org/mailman/listinfo/lm-sensors