Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e772aed3 authored by Al Viro's avatar Al Viro
Browse files

asus-wmi: ->is_visible() can't return negative



It's mode_t; return 0 (no access) on error.

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 963945bf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -857,7 +857,7 @@ static mode_t asus_hwmon_sysfs_is_visible(struct kobject *kobj,
		int err = asus_wmi_get_devstate(asus, dev_id, &value);

		if (err < 0)
			return err;
			return 0; /* can't return negative here */
	}

	if (dev_id == ASUS_WMI_DEVID_FAN_CTRL) {