]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
hwmon: (ina2xx) remove no longer used variable 'kind'
authorMarc Titinger <mtitinger@baylibre.com>
Thu, 29 Oct 2015 09:07:17 +0000 (10:07 +0100)
committerGuenter Roeck <linux@roeck-us.net>
Sat, 31 Oct 2015 15:46:01 +0000 (08:46 -0700)
Signed-off-by: Marc Titinger <mtitinger@baylibre.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/ina2xx.c

index 1ba0c72c2b8fef0f422e584b318570af41ea4b23..b24f1d3045f04386f7dc3a1c5af4b7ee7724e891 100644 (file)
@@ -109,7 +109,6 @@ struct ina2xx_data {
        struct mutex config_lock;
        struct regmap *regmap;
 
-       int kind;
        const struct attribute_group *groups[INA2XX_MAX_ATTRIBUTE_GROUPS];
 };
 
@@ -431,8 +430,7 @@ static int ina2xx_probe(struct i2c_client *client,
                return -ENOMEM;
 
        /* set the device type */
-       data->kind = id->driver_data;
-       data->config = &ina2xx_config[data->kind];
+       data->config = &ina2xx_config[id->driver_data];
 
        if (of_property_read_u32(dev->of_node, "shunt-resistor", &val) < 0) {
                struct ina2xx_platform_data *pdata = dev_get_platdata(dev);
@@ -465,7 +463,7 @@ static int ina2xx_probe(struct i2c_client *client,
        mutex_init(&data->config_lock);
 
        data->groups[group++] = &ina2xx_group;
-       if (data->kind == ina226)
+       if (id->driver_data == ina226)
                data->groups[group++] = &ina226_group;
 
        hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,