hwmon: Use kobj_to_dev()
authorGuenter Roeck <linux@roeck-us.net>
Thu, 18 Mar 2021 19:06:19 +0000 (12:06 -0700)
committerGuenter Roeck <linux@roeck-us.net>
Tue, 20 Apr 2021 13:50:14 +0000 (06:50 -0700)
coccinelle complains about

WARNING opportunity for kobj_to_dev()

in several files, resulting in one-by-one patch submissions.
Handle all remaining instances in one go.

Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/adc128d818.c
drivers/hwmon/it87.c
drivers/hwmon/lm63.c
drivers/hwmon/ltc2990.c
drivers/hwmon/max16065.c
drivers/hwmon/max6697.c

index 6c9a906..fd938c7 100644 (file)
@@ -248,7 +248,7 @@ static ssize_t adc128_alarm_show(struct device *dev,
 static umode_t adc128_is_visible(struct kobject *kobj,
                                 struct attribute *attr, int index)
 {
-       struct device *dev = container_of(kobj, struct device, kobj);
+       struct device *dev = kobj_to_dev(kobj);
        struct adc128_data *data = dev_get_drvdata(dev);
 
        if (index < ADC128_ATTR_NUM_VOLT) {
index fac9b5c..1f93134 100644 (file)
@@ -1981,7 +1981,7 @@ static SENSOR_DEVICE_ATTR(in9_label, S_IRUGO, show_label, NULL, 3);
 static umode_t it87_in_is_visible(struct kobject *kobj,
                                  struct attribute *attr, int index)
 {
-       struct device *dev = container_of(kobj, struct device, kobj);
+       struct device *dev = kobj_to_dev(kobj);
        struct it87_data *data = dev_get_drvdata(dev);
        int i = index / 5;      /* voltage index */
        int a = index % 5;      /* attribute index */
@@ -2065,7 +2065,7 @@ static const struct attribute_group it87_group_in = {
 static umode_t it87_temp_is_visible(struct kobject *kobj,
                                    struct attribute *attr, int index)
 {
-       struct device *dev = container_of(kobj, struct device, kobj);
+       struct device *dev = kobj_to_dev(kobj);
        struct it87_data *data = dev_get_drvdata(dev);
        int i = index / 7;      /* temperature index */
        int a = index % 7;      /* attribute index */
@@ -2126,7 +2126,7 @@ static const struct attribute_group it87_group_temp = {
 static umode_t it87_is_visible(struct kobject *kobj,
                               struct attribute *attr, int index)
 {
-       struct device *dev = container_of(kobj, struct device, kobj);
+       struct device *dev = kobj_to_dev(kobj);
        struct it87_data *data = dev_get_drvdata(dev);
 
        if ((index == 2 || index == 3) && !data->has_vid)
@@ -2158,7 +2158,7 @@ static const struct attribute_group it87_group = {
 static umode_t it87_fan_is_visible(struct kobject *kobj,
                                   struct attribute *attr, int index)
 {
-       struct device *dev = container_of(kobj, struct device, kobj);
+       struct device *dev = kobj_to_dev(kobj);
        struct it87_data *data = dev_get_drvdata(dev);
        int i = index / 5;      /* fan index */
        int a = index % 5;      /* attribute index */
@@ -2229,7 +2229,7 @@ static const struct attribute_group it87_group_fan = {
 static umode_t it87_pwm_is_visible(struct kobject *kobj,
                                   struct attribute *attr, int index)
 {
-       struct device *dev = container_of(kobj, struct device, kobj);
+       struct device *dev = kobj_to_dev(kobj);
        struct it87_data *data = dev_get_drvdata(dev);
        int i = index / 4;      /* pwm index */
        int a = index % 4;      /* attribute index */
@@ -2290,7 +2290,7 @@ static const struct attribute_group it87_group_pwm = {
 static umode_t it87_auto_pwm_is_visible(struct kobject *kobj,
                                        struct attribute *attr, int index)
 {
-       struct device *dev = container_of(kobj, struct device, kobj);
+       struct device *dev = kobj_to_dev(kobj);
        struct it87_data *data = dev_get_drvdata(dev);
        int i = index / 11;     /* pwm index */
        int a = index % 11;     /* attribute index */
index 50f6726..c8f93c5 100644 (file)
@@ -931,7 +931,7 @@ static const struct attribute_group lm63_group_extra_lut = {
 static umode_t lm63_attribute_mode(struct kobject *kobj,
                                   struct attribute *attr, int index)
 {
-       struct device *dev = container_of(kobj, struct device, kobj);
+       struct device *dev = kobj_to_dev(kobj);
        struct lm63_data *data = dev_get_drvdata(dev);
 
        if (attr == &sensor_dev_attr_temp2_crit.dev_attr.attr
index 78b191b..fcd31c4 100644 (file)
@@ -153,7 +153,7 @@ static ssize_t ltc2990_value_show(struct device *dev,
 static umode_t ltc2990_attrs_visible(struct kobject *kobj,
                                     struct attribute *a, int n)
 {
-       struct device *dev = container_of(kobj, struct device, kobj);
+       struct device *dev = kobj_to_dev(kobj);
        struct ltc2990_data *data = dev_get_drvdata(dev);
        struct device_attribute *da =
                        container_of(a, struct device_attribute, attr);
index a26226e..0de2da3 100644 (file)
@@ -454,7 +454,7 @@ static struct attribute *max16065_max_attributes[] = {
 static umode_t max16065_basic_is_visible(struct kobject *kobj,
                                         struct attribute *a, int n)
 {
-       struct device *dev = container_of(kobj, struct device, kobj);
+       struct device *dev = kobj_to_dev(kobj);
        struct max16065_data *data = dev_get_drvdata(dev);
        int index = n / 4;
 
@@ -466,7 +466,7 @@ static umode_t max16065_basic_is_visible(struct kobject *kobj,
 static umode_t max16065_secondary_is_visible(struct kobject *kobj,
                                             struct attribute *a, int index)
 {
-       struct device *dev = container_of(kobj, struct device, kobj);
+       struct device *dev = kobj_to_dev(kobj);
        struct max16065_data *data = dev_get_drvdata(dev);
 
        if (index >= data->num_adc)
index fc32411..2895cea 100644 (file)
@@ -460,7 +460,7 @@ static DEVICE_ATTR(dummy, 0, NULL, NULL);
 static umode_t max6697_is_visible(struct kobject *kobj, struct attribute *attr,
                                  int index)
 {
-       struct device *dev = container_of(kobj, struct device, kobj);
+       struct device *dev = kobj_to_dev(kobj);
        struct max6697_data *data = dev_get_drvdata(dev);
        const struct max6697_chip_data *chip = data->chip;
        int channel = index / 7;        /* channel number */