Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 233adcef authored by Axel Lin's avatar Axel Lin Committed by Guenter Roeck
Browse files

hwmon: (tmp103) Add missing i2c_set_clientdata call in tmp103_probe



Add missing i2c_set_clientdata() call in tmp103_probe, this makes the
dev_get_drvdata() call in tmp103_suspend/tmp103_resume return correct
address.

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent c83959f8
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -151,6 +151,7 @@ static int tmp103_probe(struct i2c_client *client,
		return ret;
		return ret;
	}
	}


	i2c_set_clientdata(client, regmap);
	hwmon_dev = hwmon_device_register_with_groups(dev, client->name,
	hwmon_dev = hwmon_device_register_with_groups(dev, client->name,
						      regmap, tmp103_groups);
						      regmap, tmp103_groups);
	return PTR_ERR_OR_ZERO(hwmon_dev);
	return PTR_ERR_OR_ZERO(hwmon_dev);