aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/hih6130.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2014-08-05 20:06:50 -0400
committerGuenter Roeck <linux@roeck-us.net>2014-08-05 22:40:27 -0400
commiteeeafd384f2f1709d48ba00c807e86d4890cf6b5 (patch)
treef79f2d05b4ef875e79eed8f3d71954d5aa35ec04 /drivers/hwmon/hih6130.c
parentd58e47d787c09fe5c61af3c6ce7d784762f29c3d (diff)
hwmon: (hih6130) Fix missing hih6130->write_length setting
The hih6130->write_length setting was accidently removed by commit ebc6b9383f3e "hwmon: (hih6130) Convert to devm_hwmon_device_register_with_groups", fix it. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/hih6130.c')
-rw-r--r--drivers/hwmon/hih6130.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/hwmon/hih6130.c b/drivers/hwmon/hih6130.c
index 0e01c4e13e33..7b73d2002d3e 100644
--- a/drivers/hwmon/hih6130.c
+++ b/drivers/hwmon/hih6130.c
@@ -238,6 +238,9 @@ static int hih6130_probe(struct i2c_client *client,
238 hih6130->client = client; 238 hih6130->client = client;
239 mutex_init(&hih6130->lock); 239 mutex_init(&hih6130->lock);
240 240
241 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_QUICK))
242 hih6130->write_length = 1;
243
241 hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name, 244 hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
242 hih6130, 245 hih6130,
243 hih6130_groups); 246 hih6130_groups);