diff options
author | Guenter Roeck <linux@roeck-us.net> | 2012-01-19 11:02:13 -0800 |
---|---|---|
committer | Guenter Roeck <guenter.roeck@ericsson.com> | 2012-03-18 18:26:58 -0700 |
commit | 8deeac82b3f3e73f50ca7109ea0029764b33874f (patch) | |
tree | a5e4cf0b08013e9f5ae87316eb224a4a08a74f32 /drivers/hwmon/ad7414.c | |
parent | 5d577dba0443634f11fec0547b6cbca5ac0b0e57 (diff) | |
download | op-kernel-dev-8deeac82b3f3e73f50ca7109ea0029764b33874f.zip op-kernel-dev-8deeac82b3f3e73f50ca7109ea0029764b33874f.tar.gz |
hwmon: (ad7414) Fix multi-line comments
Cc: Stefan Roese <sr@denx.de>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'drivers/hwmon/ad7414.c')
-rw-r--r-- | drivers/hwmon/ad7414.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/hwmon/ad7414.c b/drivers/hwmon/ad7414.c index 3646500..06d2d60 100644 --- a/drivers/hwmon/ad7414.c +++ b/drivers/hwmon/ad7414.c @@ -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; |