Commit 48b9b6d4 authored by Geliang Tang's avatar Geliang Tang Committed by Olof Johansson

platform/chrome: use to_platform_device()

Use to_platform_device() instead of open-coding it.
Signed-off-by: default avatarGeliang Tang <geliangtang@163.com>
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parent f929efb0
......@@ -412,8 +412,7 @@ static umode_t cros_ec_lightbar_attrs_are_visible(struct kobject *kobj,
struct device *dev = container_of(kobj, struct device, kobj);
struct cros_ec_dev *ec = container_of(dev,
struct cros_ec_dev, class_dev);
struct platform_device *pdev = container_of(ec->dev,
struct platform_device, dev);
struct platform_device *pdev = to_platform_device(ec->dev);
if (pdev->id != 0)
return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment