Commit 8ce98dd2 authored by Wolfram Sang's avatar Wolfram Sang Committed by Wolfram Sang
Browse files

misc: eeprom: use helper to get i2c_client from kobj



Slightly easier to read.

Signed-off-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: default avatarJean Delvare <jdelvare@suse.de>
Signed-off-by: default avatarWolfram Sang <wsa@kernel.org>
parent b1d4dc15
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ static ssize_t eeprom_read(struct file *filp, struct kobject *kobj,
			   struct bin_attribute *bin_attr,
			   char *buf, loff_t off, size_t count)
{
	struct i2c_client *client = to_i2c_client(kobj_to_dev(kobj));
	struct i2c_client *client = kobj_to_i2c_client(kobj);
	struct eeprom_data *data = i2c_get_clientdata(client);
	u8 slice;