hwmon: Use kobj_to_dev()
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>
This commit is contained in:
parent
f3e3464ec8
commit
9d2227bb9b
|
@ -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) {
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue