aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon
diff options
context:
space:
mode:
authorGuenter Roeck <linux@roeck-us.net>2013-01-10 13:04:06 -0500
committerGuenter Roeck <linux@roeck-us.net>2013-04-08 00:16:40 -0400
commitf0df0fd92da5cc6a5edf11678cc3d3563166781b (patch)
tree1b201462362a4b3da7303568edc2d9f996be1725 /drivers/hwmon
parentb55f375725ff85aada394da488802b0a3cc99e88 (diff)
hwmon: (ina2xx) 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/ina2xx.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/hwmon/ina2xx.c b/drivers/hwmon/ina2xx.c
index 8e7158c3ad2f..4958b2f89dce 100644
--- a/drivers/hwmon/ina2xx.c
+++ b/drivers/hwmon/ina2xx.c
@@ -186,20 +186,20 @@ static ssize_t ina2xx_show_value(struct device *dev,
186} 186}
187 187
188/* shunt voltage */ 188/* shunt voltage */
189static SENSOR_DEVICE_ATTR(in0_input, S_IRUGO, \ 189static SENSOR_DEVICE_ATTR(in0_input, S_IRUGO, ina2xx_show_value, NULL,
190 ina2xx_show_value, NULL, INA2XX_SHUNT_VOLTAGE); 190 INA2XX_SHUNT_VOLTAGE);
191 191
192/* bus voltage */ 192/* bus voltage */
193static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, \ 193static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, ina2xx_show_value, NULL,
194 ina2xx_show_value, NULL, INA2XX_BUS_VOLTAGE); 194 INA2XX_BUS_VOLTAGE);
195 195
196/* calculated current */ 196/* calculated current */
197static SENSOR_DEVICE_ATTR(curr1_input, S_IRUGO, \ 197static SENSOR_DEVICE_ATTR(curr1_input, S_IRUGO, ina2xx_show_value, NULL,
198 ina2xx_show_value, NULL, INA2XX_CURRENT); 198 INA2XX_CURRENT);
199 199
200/* calculated power */ 200/* calculated power */
201static SENSOR_DEVICE_ATTR(power1_input, S_IRUGO, \ 201static SENSOR_DEVICE_ATTR(power1_input, S_IRUGO, ina2xx_show_value, NULL,
202 ina2xx_show_value, NULL, INA2XX_POWER); 202 INA2XX_POWER);
203 203
204/* pointers to created device attributes */ 204/* pointers to created device attributes */
205static struct attribute *ina2xx_attributes[] = { 205static struct attribute *ina2xx_attributes[] = {