diff options
Diffstat (limited to 'drivers/hwmon/sis5595.c')
| -rw-r--r-- | drivers/hwmon/sis5595.c | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/hwmon/sis5595.c b/drivers/hwmon/sis5595.c index c35847a1a0a..1404e6319de 100644 --- a/drivers/hwmon/sis5595.c +++ b/drivers/hwmon/sis5595.c @@ -456,8 +456,9 @@ static ssize_t set_fan_div(struct device *dev, struct device_attribute *da,  		data->fan_div[nr] = 3;  		break;  	default: -		dev_err(dev, "fan_div value %ld not " -			"supported. Choose one of 1, 2, 4 or 8!\n", val); +		dev_err(dev, +			"fan_div value %ld not supported. Choose one of 1, 2, 4 or 8!\n", +			val);  		mutex_unlock(&data->update_lock);  		return -EINVAL;  	}  |