diff options
| -rw-r--r-- | drivers/hwmon/adt7470.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/hwmon/adt7470.c b/drivers/hwmon/adt7470.c index 9e775717abb7..87d92a56a939 100644 --- a/drivers/hwmon/adt7470.c +++ b/drivers/hwmon/adt7470.c | |||
| @@ -1286,8 +1286,10 @@ static int adt7470_probe(struct i2c_client *client, | |||
| 1286 | init_completion(&data->auto_update_stop); | 1286 | init_completion(&data->auto_update_stop); |
| 1287 | data->auto_update = kthread_run(adt7470_update_thread, client, | 1287 | data->auto_update = kthread_run(adt7470_update_thread, client, |
| 1288 | dev_name(data->hwmon_dev)); | 1288 | dev_name(data->hwmon_dev)); |
| 1289 | if (IS_ERR(data->auto_update)) | 1289 | if (IS_ERR(data->auto_update)) { |
| 1290 | err = PTR_ERR(data->auto_update); | ||
| 1290 | goto exit_unregister; | 1291 | goto exit_unregister; |
| 1292 | } | ||
| 1291 | 1293 | ||
| 1292 | return 0; | 1294 | return 0; |
| 1293 | 1295 | ||
