From: Guenter Roeck Date: Sun, 20 Jan 2013 05:18:41 +0000 (-0800) Subject: hwmon: (ltc4151) Fix 'Avoid unnecessary line continuations' checkpatch warning X-Git-Tag: next-20130322~75^2~8 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=20bb92606e5189fe0b9d351374e94ae7396ad8b9;p=karo-tx-linux.git hwmon: (ltc4151) Fix 'Avoid unnecessary line continuations' checkpatch warning Signed-off-by: Guenter Roeck --- 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, /* * Input voltages. */ -static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, \ - ltc4151_show_value, NULL, LTC4151_VIN_H); -static SENSOR_DEVICE_ATTR(in2_input, S_IRUGO, \ - ltc4151_show_value, NULL, LTC4151_ADIN_H); +static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, ltc4151_show_value, NULL, + LTC4151_VIN_H); +static SENSOR_DEVICE_ATTR(in2_input, S_IRUGO, ltc4151_show_value, NULL, + LTC4151_ADIN_H); /* Currents (via sense resistor) */ -static SENSOR_DEVICE_ATTR(curr1_input, S_IRUGO, \ - ltc4151_show_value, NULL, LTC4151_SENSE_H); +static SENSOR_DEVICE_ATTR(curr1_input, S_IRUGO, ltc4151_show_value, NULL, + LTC4151_SENSE_H); /* * Finally, construct an array of pointers to members of the above objects,