提交 a3bdc5b5 编写于 作者: C Colin Ian King 提交者: Guenter Roeck

hwmon: (asc7621) remove redundant assignment to newval

The setting of newval to zero is redundant as the following if/else
stanzas will always update newval to a new value. Remove the
redundant setting, cleans up clang build warning:

drivers/hwmon/asc7621.c:582:2: warning: Value stored to 'newval' is
never read
Signed-off-by: NColin Ian King <colin.king@canonical.com>
Signed-off-by: NGuenter Roeck <linux@roeck-us.net>
上级 749d782d
...@@ -579,7 +579,6 @@ static ssize_t show_pwm_enable(struct device *dev, ...@@ -579,7 +579,6 @@ static ssize_t show_pwm_enable(struct device *dev,
mutex_unlock(&data->update_lock); mutex_unlock(&data->update_lock);
val = config | (altbit << 3); val = config | (altbit << 3);
newval = 0;
if (val == 3 || val >= 10) if (val == 3 || val >= 10)
newval = 255; newval = 255;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册