eeprom: ee1004: Use kobj_to_i2c_client to simplify the code
authorHeiner Kallweit <hkallweit1@gmail.com>
Mon, 24 May 2021 20:08:51 +0000 (22:08 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 May 2021 12:49:39 +0000 (14:49 +0200)
Switch to helper kobj_to_i2c_client() to simplify the code.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Link: https://lore.kernel.org/r/4ae57f09-b803-6ae3-c734-87e733a56eb8@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/eeprom/ee1004.c

index 0950d4d9d9ce39c3d041fb6bb5a808f836b69c22..0613a530099c42a5a59608bd5aaa97dd13d2d4e0 100644 (file)
@@ -93,8 +93,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 device *dev = kobj_to_dev(kobj);
-       struct i2c_client *client = to_i2c_client(dev);
+       struct i2c_client *client = kobj_to_i2c_client(kobj);
        size_t requested = count;
        int page;