Source
1309
1309
}
1310
1310
data->lm75[1] = i2c_new_dummy(adapter,
1311
1311
0x48 + ((val >> 4) & 0x7));
1312
1312
}
1313
1313
1314
1314
return 0;
1315
1315
1316
1316
/* Undo inits in case of errors */
1317
1317
1318
1318
error_sc_1:
1319
-
if (data->lm75[0] != NULL)
1320
-
i2c_unregister_device(data->lm75[0]);
1319
+
i2c_unregister_device(data->lm75[0]);
1321
1320
error_sc_0:
1322
1321
return err;
1323
1322
}
1324
1323
1325
1324
1326
1325
/* Return 0 if detection is successful, -ENODEV otherwise */
1327
1326
static int w83791d_detect(struct i2c_client *client,
1328
1327
struct i2c_board_info *info)
1329
1328
{
1330
1329
struct i2c_adapter *adapter = client->adapter;
1427
1426
}
1428
1427
1429
1428
return 0;
1430
1429
1431
1430
error5:
1432
1431
if (has_fanpwm45)
1433
1432
sysfs_remove_group(&client->dev.kobj, &w83791d_group_fanpwm45);
1434
1433
error4:
1435
1434
sysfs_remove_group(&client->dev.kobj, &w83791d_group);
1436
1435
error3:
1437
-
if (data->lm75[0] != NULL)
1438
-
i2c_unregister_device(data->lm75[0]);
1439
-
if (data->lm75[1] != NULL)
1440
-
i2c_unregister_device(data->lm75[1]);
1436
+
i2c_unregister_device(data->lm75[0]);
1437
+
i2c_unregister_device(data->lm75[1]);
1441
1438
return err;
1442
1439
}
1443
1440
1444
1441
static int w83791d_remove(struct i2c_client *client)
1445
1442
{
1446
1443
struct w83791d_data *data = i2c_get_clientdata(client);
1447
1444
1448
1445
hwmon_device_unregister(data->hwmon_dev);
1449
1446
sysfs_remove_group(&client->dev.kobj, &w83791d_group);
1450
1447
1451
-
if (data->lm75[0] != NULL)
1452
-
i2c_unregister_device(data->lm75[0]);
1453
-
if (data->lm75[1] != NULL)
1454
-
i2c_unregister_device(data->lm75[1]);
1448
+
i2c_unregister_device(data->lm75[0]);
1449
+
i2c_unregister_device(data->lm75[1]);
1455
1450
1456
1451
return 0;
1457
1452
}
1458
1453
1459
1454
static void w83791d_init_client(struct i2c_client *client)
1460
1455
{
1461
1456
struct w83791d_data *data = i2c_get_clientdata(client);
1462
1457
u8 tmp;
1463
1458
u8 old_beep;
1464
1459