hwmon: (asc7621) Fix multi-line comments
authorGuenter Roeck <linux@roeck-us.net>
Thu, 19 Jan 2012 19:02:16 +0000 (11:02 -0800)
committerGuenter Roeck <guenter.roeck@ericsson.com>
Mon, 19 Mar 2012 01:26:54 +0000 (18:26 -0700)
Cc: George Joseph <george.joseph@fairview5.com>
Acked-by: George Joseph <george.joseph@fairview5.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/asc7621.c

index 3efd324..7caa242 100644 (file)
@@ -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));