mirror of https://gitee.com/openkylin/linux.git
hwmon: (jc42) fix type mismatch
In set_temp_crit_hyst(), make the variable 'val' have the correct type for strict_strtoul(). Signed-off-by: Clemens Ladisch <clemens@ladisch.de> Cc: stable@kernel.org Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
This commit is contained in:
parent
85e2efbb1d
commit
e866729605
|
@ -332,7 +332,7 @@ static ssize_t set_temp_crit_hyst(struct device *dev,
|
|||
{
|
||||
struct i2c_client *client = to_i2c_client(dev);
|
||||
struct jc42_data *data = i2c_get_clientdata(client);
|
||||
long val;
|
||||
unsigned long val;
|
||||
int diff, hyst;
|
||||
int err;
|
||||
int ret = count;
|
||||
|
|
Loading…
Reference in New Issue