diff options
Diffstat (limited to 'drivers/hwmon/fscher.c')
-rw-r--r-- | drivers/hwmon/fscher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/fscher.c b/drivers/hwmon/fscher.c index 19717752cfc..f3aa188a5d5 100644 --- a/drivers/hwmon/fscher.c +++ b/drivers/hwmon/fscher.c | |||
@@ -599,7 +599,7 @@ static ssize_t set_control(struct i2c_client *client, struct fscher_data *data, | |||
599 | unsigned long v = simple_strtoul(buf, NULL, 10) & 0x01; | 599 | unsigned long v = simple_strtoul(buf, NULL, 10) & 0x01; |
600 | 600 | ||
601 | mutex_lock(&data->update_lock); | 601 | mutex_lock(&data->update_lock); |
602 | data->global_control &= ~v; | 602 | data->global_control = v; |
603 | fscher_write_value(client, reg, v); | 603 | fscher_write_value(client, reg, v); |
604 | mutex_unlock(&data->update_lock); | 604 | mutex_unlock(&data->update_lock); |
605 | return count; | 605 | return count; |