hwmon: (max6650) Fix minor formatting issues

CHECK: struct mutex definition without comment
CHECK: Alignment should match open parenthesis

Cc: Jean-Francois Dagenais <jeff.dagenais@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
Guenter Roeck 2019-06-07 10:23:25 -07:00
parent 0c4a71d365
commit 228b9e196a

View File

@ -101,7 +101,7 @@ module_param(clock, int, 0444);
struct max6650_data {
struct i2c_client *client;
struct mutex update_lock;
struct mutex update_lock; /* protect alarm register updates */
int nr_fans;
bool valid; /* false until following fields are valid */
unsigned long last_updated; /* in jiffies */
@ -500,7 +500,6 @@ static int max6650_set_cur_state(struct thermal_cooling_device *cdev,
data->dac = pwm_to_dac(state, data->config & MAX6650_CFG_V12);
err = i2c_smbus_write_byte_data(client, MAX6650_REG_DAC, data->dac);
if (!err) {
max6650_set_operating_mode(data, state ?
MAX6650_CFG_MODE_OPEN_LOOP :