Use kobj_to_dev() instead of container_of()
Signed-off-by: Wang Qing wangqing@vivo.com --- drivers/greybus/interface.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/greybus/interface.c b/drivers/greybus/interface.c index 67dbe6f..de167f1 --- a/drivers/greybus/interface.c +++ b/drivers/greybus/interface.c @@ -620,7 +620,7 @@ static struct attribute *interface_common_attrs[] = { static umode_t interface_unipro_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 gb_interface *intf = to_gb_interface(dev);
switch (intf->type) { @@ -635,7 +635,7 @@ static umode_t interface_unipro_is_visible(struct kobject *kobj, static umode_t interface_greybus_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 gb_interface *intf = to_gb_interface(dev);
switch (intf->type) { @@ -649,7 +649,7 @@ static umode_t interface_greybus_is_visible(struct kobject *kobj, static umode_t interface_power_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 gb_interface *intf = to_gb_interface(dev);
switch (intf->type) {
On 13-08-20, 11:34, Wang Qing wrote:
Use kobj_to_dev() instead of container_of()
Signed-off-by: Wang Qing wangqing@vivo.com
drivers/greybus/interface.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
Acked-by: Viresh Kumar viresh.kumar@linaro.org
On Thu, Aug 13, 2020 at 11:34:48AM +0800, Wang Qing wrote:
Use kobj_to_dev() instead of container_of()
Signed-off-by: Wang Qing wangqing@vivo.com
I'd shorten the summary somewhat:
greybus: use kobj_to_dev()
but looks good otherwise.
Acked-by: Johan Hovold johan@kernel.org