diff options
author | Yang Li <yang.lee@linux.alibaba.com> | 2021-02-23 17:42:24 +0800 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2021-04-14 16:03:35 +0100 |
commit | 23144a323118380a97e39b3b3f09ae3099c5aeb4 (patch) | |
tree | 324efc891cef402cfb1e0d8fbb79e7854f4f42cc /drivers/mfd | |
parent | 3a65a3e72cd9797b845567ccd7bf4b00a530db54 (diff) | |
download | linux-23144a323118380a97e39b3b3f09ae3099c5aeb4.tar.bz2 |
mfd: lm3533: Switch to using the new API kobj_to_dev()
Fixes the following coccicheck warning:
drivers/mfd/lm3533-core.c:361:60-61: WARNING opportunity for kobj_to_dev()
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/lm3533-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/lm3533-core.c b/drivers/mfd/lm3533-core.c index 22fdffd564f7..5690768f3e63 100644 --- a/drivers/mfd/lm3533-core.c +++ b/drivers/mfd/lm3533-core.c @@ -358,7 +358,7 @@ static struct attribute *lm3533_attributes[] = { static umode_t lm3533_attr_is_visible(struct kobject *kobj, struct attribute *attr, int n) { - struct device *dev = container_of(kobj, struct device, kobj); + struct device *dev = kobj_to_dev(kobj); struct lm3533 *lm3533 = dev_get_drvdata(dev); struct device_attribute *dattr = to_dev_attr(attr); struct lm3533_device_attribute *lattr = to_lm3533_dev_attr(dattr); |