diff options
author | Chaitanya Kulkarni <[email protected]> | 2021-04-13 10:52:54 +0000 |
---|---|---|
committer | Jens Axboe <[email protected]> | 2021-04-13 09:16:12 -0600 |
commit | 327e1d2957ab7dfdc0334f70d89ffed03040c6a5 (patch) | |
tree | d3cffd03ef826c02751582af2c9e23dbdf32372f | |
parent | a8ed1a0607cfa5478ff6009539f44790c4d0956d (diff) |
lightnvm: use kobj_to_dev()
This fixs coccicheck warning:
drivers/nvme//host/lightnvm.c:1243:60-61: WARNING opportunity for
kobj_to_dev()
Signed-off-by: Chaitanya Kulkarni <[email protected]>
Signed-off-by: Matias Bjørling <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r-- | drivers/nvme/host/lightnvm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/lightnvm.c b/drivers/nvme/host/lightnvm.c index b705988629f2..e3240d189093 100644 --- a/drivers/nvme/host/lightnvm.c +++ b/drivers/nvme/host/lightnvm.c @@ -1240,7 +1240,7 @@ static struct attribute *nvm_dev_attrs[] = { static umode_t nvm_dev_attrs_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 gendisk *disk = dev_to_disk(dev); struct nvme_ns *ns = disk->private_data; struct nvm_dev *ndev = ns->ndev; |