aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/w83627ehf.c
diff options
context:
space:
mode:
authorTian Tao <tiantao6@hisilicon.com>2020-12-14 09:02:15 +0800
committerGuenter Roeck <linux@roeck-us.net>2021-01-27 17:44:17 -0800
commit5707c8dbdea30be916e3cd831a6dd84ca007407f (patch)
tree0d54d9bac4ee7ad585ee4f4ad12f19d900a43126 /drivers/hwmon/w83627ehf.c
parenthwmon: (smsc47m1) Remove 'h' from printk format specifier (diff)
downloadlinux-dev-5707c8dbdea30be916e3cd831a6dd84ca007407f.tar.xz
linux-dev-5707c8dbdea30be916e3cd831a6dd84ca007407f.zip
hwmon: (w83627ehf) Switch to using the new API kobj_to_dev()
Switch to using the new API kobj_to_dev() to fix the below warnning: drivers/hwmon/w83627ehf.c:1113:60-61: WARNING opportunity for kobj_to_dev(). Signed-off-by: Tian Tao <tiantao6@hisilicon.com> Link: https://lore.kernel.org/r/1607907735-17510-1-git-send-email-tiantao6@hisilicon.com Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/w83627ehf.c')
-rw-r--r--drivers/hwmon/w83627ehf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/w83627ehf.c b/drivers/hwmon/w83627ehf.c
index 3964ceab2817..8618aaf32350 100644
--- a/drivers/hwmon/w83627ehf.c
+++ b/drivers/hwmon/w83627ehf.c
@@ -1110,7 +1110,7 @@ clear_caseopen(struct device *dev, struct w83627ehf_data *data, int channel,
static umode_t w83627ehf_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 w83627ehf_data *data = dev_get_drvdata(dev);
struct device_attribute *devattr;
struct sensor_device_attribute *sda;