Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bc0c591e authored by Guenter Roeck's avatar Guenter Roeck
Browse files

hwmon: (ltc4151) Fix 'Avoid unnecessary line continuations' checkpatch warning

parent f0df0fd9
Loading
Loading
Loading
Loading
+6 −6
Original line number Original line Diff line number Diff line
@@ -146,14 +146,14 @@ static ssize_t ltc4151_show_value(struct device *dev,
/*
/*
 * Input voltages.
 * Input voltages.
 */
 */
static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, \
static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, ltc4151_show_value, NULL,
	ltc4151_show_value, NULL, LTC4151_VIN_H);
			  LTC4151_VIN_H);
static SENSOR_DEVICE_ATTR(in2_input, S_IRUGO, \
static SENSOR_DEVICE_ATTR(in2_input, S_IRUGO, ltc4151_show_value, NULL,
	ltc4151_show_value, NULL, LTC4151_ADIN_H);
			  LTC4151_ADIN_H);


/* Currents (via sense resistor) */
/* Currents (via sense resistor) */
static SENSOR_DEVICE_ATTR(curr1_input, S_IRUGO, \
static SENSOR_DEVICE_ATTR(curr1_input, S_IRUGO, ltc4151_show_value, NULL,
	ltc4151_show_value, NULL, LTC4151_SENSE_H);
			  LTC4151_SENSE_H);


/*
/*
 * Finally, construct an array of pointers to members of the above objects,
 * Finally, construct an array of pointers to members of the above objects,