projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
23bc3ca
)
hwmon: (ds1621) Use kobj_to_dev()
author
Tian Tao
<tiantao6@hisilicon.com>
Thu, 18 Mar 2021 01:55:04 +0000
(09:55 +0800)
committer
Guenter Roeck
<linux@roeck-us.net>
Tue, 20 Apr 2021 13:50:14 +0000
(06:50 -0700)
fixed the following coccicheck:
./drivers/hwmon/ds1621.c:329:60-61: WARNING opportunity
for kobj_to_dev().
Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
Link:
https://lore.kernel.org/r/1616032504-59817-1-git-send-email-tiantao6@hisilicon.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/ds1621.c
patch
|
blob
|
history
diff --git
a/drivers/hwmon/ds1621.c
b/drivers/hwmon/ds1621.c
index
e1d742b
..
bf1c4b7
100644
(file)
--- a/
drivers/hwmon/ds1621.c
+++ b/
drivers/hwmon/ds1621.c
@@
-326,7
+326,7
@@
static struct attribute *ds1621_attributes[] = {
static umode_t ds1621_attribute_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 ds1621_data *data = dev_get_drvdata(dev);
if (attr == &dev_attr_update_interval.attr)