aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon
diff options
context:
space:
mode:
authorGuenter Roeck <linux@roeck-us.net>2013-01-20 00:18:41 -0500
committerGuenter Roeck <linux@roeck-us.net>2013-04-08 00:16:40 -0400
commitbc0c591ec1d1f5dd0549c0f0d003647d197a025b (patch)
treec387c3ae95b1281eaf0a17d63497cd43b3d2d702 /drivers/hwmon
parentf0df0fd92da5cc6a5edf11678cc3d3563166781b (diff)
hwmon: (ltc4151) Fix 'Avoid unnecessary line continuations' checkpatch warning
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r--drivers/hwmon/ltc4151.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/hwmon/ltc4151.c b/drivers/hwmon/ltc4151.c
index 4319a94f549d..af81be1237c9 100644
--- a/drivers/hwmon/ltc4151.c
+++ b/drivers/hwmon/ltc4151.c
@@ -146,14 +146,14 @@ static ssize_t ltc4151_show_value(struct device *dev,
146/* 146/*
147 * Input voltages. 147 * Input voltages.
148 */ 148 */
149static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, \ 149static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, ltc4151_show_value, NULL,
150 ltc4151_show_value, NULL, LTC4151_VIN_H); 150 LTC4151_VIN_H);
151static SENSOR_DEVICE_ATTR(in2_input, S_IRUGO, \ 151static SENSOR_DEVICE_ATTR(in2_input, S_IRUGO, ltc4151_show_value, NULL,
152 ltc4151_show_value, NULL, LTC4151_ADIN_H); 152 LTC4151_ADIN_H);
153 153
154/* Currents (via sense resistor) */ 154/* Currents (via sense resistor) */
155static SENSOR_DEVICE_ATTR(curr1_input, S_IRUGO, \ 155static SENSOR_DEVICE_ATTR(curr1_input, S_IRUGO, ltc4151_show_value, NULL,
156 ltc4151_show_value, NULL, LTC4151_SENSE_H); 156 LTC4151_SENSE_H);
157 157
158/* 158/*
159 * Finally, construct an array of pointers to members of the above objects, 159 * Finally, construct an array of pointers to members of the above objects,