From 3fde481373cebaf4d2dd03441e909b7ee880dca6 Mon Sep 17 00:00:00 2001 From: Guenter Roeck Date: Mon, 2 Oct 2017 08:02:36 -0700 Subject: [PATCH] Checkpatch cleanup: Line length Try to stay below the 80-character-per-line limit. Signed-off-by: Guenter Roeck --- it87.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/it87.c b/it87.c index e6f240d..5d13753 100644 --- a/it87.c +++ b/it87.c @@ -1158,7 +1158,8 @@ static struct it87_data *it87_update_device(struct device *dev) if (!(data->has_fan & BIT(i))) continue; - data->fan[i][1] = data->read(data, data->REG_FAN_MIN[i]); + data->fan[i][1] = data->read(data, + data->REG_FAN_MIN[i]); data->fan[i][0] = data->read(data, data->REG_FAN[i]); /* Add high byte if in 16-bit mode */ if (has_16bit_fans(data)) { @@ -2933,7 +2934,8 @@ static const struct attribute_group it87_group_auto_pwm = { /* SuperIO detection - will change isa_address if a chip is found */ static int __init it87_find(int sioaddr, unsigned short *address, - phys_addr_t *mmio_address, struct it87_sio_data *sio_data) + phys_addr_t *mmio_address, + struct it87_sio_data *sio_data) { const struct it87_devices *config; phys_addr_t base = 0; @@ -4121,21 +4123,24 @@ static struct it87_dmi_data nvidia_fn68pt = { static const struct dmi_system_id it87_dmi_table[] __initconst = { { .matches = { - DMI_MATCH(DMI_SYS_VENDOR, "Gigabyte Technology Co., Ltd."), + DMI_MATCH(DMI_SYS_VENDOR, + "Gigabyte Technology Co., Ltd."), DMI_MATCH(DMI_BOARD_NAME, "AB350"), }, .driver_data = &gigabyte_sio2_force, }, { .matches = { - DMI_MATCH(DMI_SYS_VENDOR, "Gigabyte Technology Co., Ltd."), + DMI_MATCH(DMI_SYS_VENDOR, + "Gigabyte Technology Co., Ltd."), DMI_MATCH(DMI_BOARD_NAME, "AX370"), }, .driver_data = &gigabyte_sio2_force, }, { .matches = { - DMI_MATCH(DMI_SYS_VENDOR, "Gigabyte Technology Co., Ltd."), + DMI_MATCH(DMI_SYS_VENDOR, + "Gigabyte Technology Co., Ltd."), DMI_MATCH(DMI_BOARD_NAME, "Z97X-Gaming G1"), }, .driver_data = &gigabyte_sio2_force, -- 2.39.2