From: Guenter Roeck Date: Thu, 19 Jan 2012 19:02:13 +0000 (-0800) Subject: hwmon: (ad7414) Fix multi-line comments X-Git-Tag: v3.4-rc1~167^2~89 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=8deeac82b3f3e73f50ca7109ea0029764b33874f;p=karo-tx-linux.git hwmon: (ad7414) Fix multi-line comments Cc: Stefan Roese Signed-off-by: Guenter Roeck Acked-by: Stefan Roese --- diff --git a/drivers/hwmon/ad7414.c b/drivers/hwmon/ad7414.c index 36465006c4fb..06d2d60d1fd0 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;