All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] samsung-laptop: use kobj_to_dev()
@ 2022-05-10 10:50 cgel.zte
  2022-05-10 12:13 ` Andy Shevchenko
  0 siblings, 1 reply; 5+ messages in thread
From: cgel.zte @ 2022-05-10 10:50 UTC (permalink / raw)
  To: corentin.chary
  Cc: hdegoede, markgross, platform-driver-x86, linux-kernel,
	Minghao Chi, Zeal Robot

From: Minghao Chi <chi.minghao@zte.com.cn>

Use kobj_to_dev() instead of open-coding it.

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Minghao Chi <chi.minghao@zte.com.cn>
---
 drivers/platform/x86/samsung-laptop.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/platform/x86/samsung-laptop.c b/drivers/platform/x86/samsung-laptop.c
index 19f6b456234f..c187dcdf82f0 100644
--- a/drivers/platform/x86/samsung-laptop.c
+++ b/drivers/platform/x86/samsung-laptop.c
@@ -1208,7 +1208,7 @@ static int __init samsung_backlight_init(struct samsung_laptop *samsung)
 static umode_t samsung_sysfs_is_visible(struct kobject *kobj,
 					struct attribute *attr, int idx)
 {
-	struct device *dev = container_of(kobj, struct device, kobj);
+	struct device *dev = kobj_to_dev(kobj);
 	struct samsung_laptop *samsung = dev_get_drvdata(dev);
 	bool ok = true;
 
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-05-11 16:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-10 10:50 [PATCH] samsung-laptop: use kobj_to_dev() cgel.zte
2022-05-10 12:13 ` Andy Shevchenko
2022-05-11  2:15   ` [PATCH V2] " cgel.zte
2022-05-11  9:17     ` Andy Shevchenko
2022-05-11 16:03     ` Hans de Goede

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.