On Tue, Mar 07, 2017 at 02:38:29PM -0500, Alex Hemme wrote:
> Traced fans not spinning to incorrect PWM value being written.
> The passed in value was written instead of the calulated value.
>
> Fixes: 54187ff9d766 ("hwmon: (max31790) Convert to use new hwmon registration
> API")
>
> Signed-off-by: Alex Hemme <[email protected]>
Applied, and sorry for the trouble.
Thanks,
Guenter
> ---
> drivers/hwmon/max31790.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/hwmon/max31790.c b/drivers/hwmon/max31790.c
> index c1b9275..281491c 100644
> --- a/drivers/hwmon/max31790.c
> +++ b/drivers/hwmon/max31790.c
> @@ -311,7 +311,7 @@ static int max31790_write_pwm(struct device *dev, u32
> attr, int channel,
> data->pwm[channel] = val << 8;
> err = i2c_smbus_write_word_swapped(client,
> MAX31790_REG_PWMOUT(channel),
> - val);
> + data->pwm[channel]);
> break;
> case hwmon_pwm_enable:
> fan_config = data->fan_config[channel];
> --
> 1.8.3.1
>
--
To unsubscribe from this list: send the line "unsubscribe linux-hwmon" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html