From: Guenter Roeck Date: Thu, 19 Jan 2012 19:02:16 +0000 (-0800) Subject: hwmon: (asc7621) Fix multi-line comments X-Git-Tag: firefly_0821_release~3680^2~3328^2~95 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3c56b066fb62e4aee95e4b3acff35296765a25d1;p=firefly-linux-kernel-4.4.55.git hwmon: (asc7621) Fix multi-line comments Cc: George Joseph Acked-by: George Joseph Signed-off-by: Guenter Roeck --- diff --git a/drivers/hwmon/asc7621.c b/drivers/hwmon/asc7621.c index 3efd32449982..7caa242915a6 100644 --- a/drivers/hwmon/asc7621.c +++ b/drivers/hwmon/asc7621.c @@ -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));