]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
hwmon: (ad7414) Fix multi-line comments
authorGuenter Roeck <linux@roeck-us.net>
Thu, 19 Jan 2012 19:02:13 +0000 (11:02 -0800)
committerGuenter Roeck <guenter.roeck@ericsson.com>
Mon, 19 Mar 2012 01:26:58 +0000 (18:26 -0700)
Cc: Stefan Roese <sr@denx.de>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Stefan Roese <sr@denx.de>
drivers/hwmon/ad7414.c

index 36465006c4fba8129f68697471033bdd5b211bcf..06d2d60d1fd0ee7785e529344b584a887976dccf 100644 (file)
@@ -50,7 +50,8 @@ struct ad7414_data {
 /* REG: (0.25C/bit, two's complement) << 6 */
 static inline int ad7414_temp_from_reg(s16 reg)
 {
-       /* use integer division instead of equivalent right shift to
+       /*
+        * use integer division instead of equivalent right shift to
         * guarantee arithmetic shift and preserve the sign
         */
        return ((int)reg / 64) * 250;