aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/max1111.c
diff options
context:
space:
mode:
authorGuenter Roeck <linux@roeck-us.net>2012-01-19 14:02:22 -0500
committerGuenter Roeck <guenter.roeck@ericsson.com>2012-03-18 21:27:17 -0400
commit51683ee83e5a737da218bcfa064993b6cd05b946 (patch)
treefe32ae8558398789bf5771cbe14f72cf091fdfbb /drivers/hwmon/max1111.c
parent1b05d22f2c8de166dd4ac14fe05c5c740db825e8 (diff)
hwmon: (max1111) Fix multi-line comments
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/max1111.c')
-rw-r--r--drivers/hwmon/max1111.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/hwmon/max1111.c b/drivers/hwmon/max1111.c
index e5206ae00d76..362a40eb6129 100644
--- a/drivers/hwmon/max1111.c
+++ b/drivers/hwmon/max1111.c
@@ -106,7 +106,8 @@ static ssize_t show_adc(struct device *dev,
106 if (ret < 0) 106 if (ret < 0)
107 return ret; 107 return ret;
108 108
109 /* assume the reference voltage to be 2.048V, with an 8-bit sample, 109 /*
110 * assume the reference voltage to be 2.048V, with an 8-bit sample,
110 * the LSB weight is 8mV 111 * the LSB weight is 8mV
111 */ 112 */
112 return sprintf(buf, "%d\n", ret * 8); 113 return sprintf(buf, "%d\n", ret * 8);