Commit a15ad193 authored by Corentin Labbe's avatar Corentin Labbe Committed by Guenter Roeck
Browse files

hwmon: (adm1029) Fix function alignment



This patch fix the "Alignment should match open parenthesis" checkpatch
warning.

Signed-off-by: default avatarCorentin Labbe <clabbe.montjoie@gmail.com>
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent d6450e85
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -203,8 +203,8 @@ show_fan_div(struct device *dev, struct device_attribute *devattr, char *buf)
	return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[attr->index]));
}

static ssize_t set_fan_div(struct device *dev,
	    struct device_attribute *devattr, const char *buf, size_t count)
static ssize_t set_fan_div(struct device *dev, struct device_attribute *devattr,
			   const char *buf, size_t count)
{
	struct adm1029_data *data = dev_get_drvdata(dev);
	struct i2c_client *client = data->client;