projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5d577db
)
hwmon: (ad7414) Fix multi-line comments
author
Guenter Roeck
<linux@roeck-us.net>
Thu, 19 Jan 2012 19:02:13 +0000
(11:02 -0800)
committer
Guenter 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
patch
|
blob
|
history
diff --git
a/drivers/hwmon/ad7414.c
b/drivers/hwmon/ad7414.c
index 36465006c4fba8129f68697471033bdd5b211bcf..06d2d60d1fd0ee7785e529344b584a887976dccf 100644
(file)
--- 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;