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

Commit 3c56b066 authored by Guenter Roeck's avatar Guenter Roeck Committed by Guenter Roeck
Browse files

hwmon: (asc7621) Fix multi-line comments



Cc: George Joseph <george.joseph@fairview5.com>
Acked-by: default avatarGeorge Joseph <george.joseph@fairview5.com>
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent 4a0d71cf
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -268,9 +268,11 @@ static ssize_t store_fan16(struct device *dev,
	if (kstrtol(buf, 10, &reqval))
		return -EINVAL;

	/* If a minimum RPM of zero is requested, then we set the register to
	   0xffff. This value allows the fan to be stopped completely without
	   generating an alarm. */
	/*
	 * If a minimum RPM of zero is requested, then we set the register to
	 * 0xffff. This value allows the fan to be stopped completely without
	 * generating an alarm.
	 */
	reqval =
	    (reqval <= 0 ? 0xffff : SENSORS_LIMIT(5400000 / reqval, 0, 0xfffe));