Re: [PATCH] nvme: use kobj_to_dev() to get device
From: Jens Axboe
Date: Fri Sep 04 2020 - 11:18:20 EST
On 9/4/20 9:01 AM, Xianting Tian wrote:
> We already has the interface kobj_to_dev(), which can be used to get
> 'struct device *' from kobj, so use it.
Let's please not, this is immediately obvious what it does:
struct device *dev = container_of(kobj, struct device, kobj);
while this one is totally not:
struct device *dev = kobj_to_dev(kobj);
Any sort of privte whatever_to_foo() should be removed from the tree,
imho.
--
Jens Axboe