mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
hwmon: (w83781d) Add missing curly braces
Missing curly braces cause an if statement to be evaluated when it shouldn't. It happens to be harmless, but that's still worth fixing. Thanks to Riku Voipio for reporting. Signed-off-by: Jean Delvare <khali@linux-fr.org> Acked-By: Riku Voipio <riku.voipio@movial.fi> Signed-off-by: Mark M. Hoffman <mhoffman@lightlink.com>
This commit is contained in:
parent
dcbd9f68ae
commit
7768aa7696
@ -1122,12 +1122,13 @@ w83781d_create_files(struct device *dev, int kind, int is_isa)
|
||||
&sensor_dev_attr_temp3_beep.dev_attr)))
|
||||
return err;
|
||||
|
||||
if (kind != w83781d)
|
||||
if (kind != w83781d) {
|
||||
err = sysfs_chmod_file(&dev->kobj,
|
||||
&sensor_dev_attr_temp3_alarm.dev_attr.attr,
|
||||
S_IRUGO | S_IWUSR);
|
||||
if (err)
|
||||
return err;
|
||||
}
|
||||
}
|
||||
|
||||
if (kind != w83781d && kind != as99127f) {
|
||||
|
Loading…
Reference in New Issue
Block a user