diff options
author | Minghao Chi <chi.minghao@zte.com.cn> | 2022-05-11 05:16:38 +0300 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2022-05-12 16:37:53 +0300 |
commit | 46ecf720f36230385d876013bbdb4536a56dcec9 (patch) | |
tree | 7d0e88a3a182f8ebe9438adeb53f1630e01ed8ad /drivers/platform | |
parent | c8ad6a768062e0e0aea59ad35bf33cd0a329b03b (diff) | |
download | linux-46ecf720f36230385d876013bbdb4536a56dcec9.tar.xz |
platform/x86: toshiba_acpi: use kobj_to_dev()
Use kobj_to_dev() instead of open-coding it.
Signed-off-by: Minghao Chi <chi.minghao@zte.com.cn>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Link: https://lore.kernel.org/r/20220511021638.1488650-1-chi.minghao@zte.com.cn
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/toshiba_acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/toshiba_acpi.c b/drivers/platform/x86/toshiba_acpi.c index f113dec98e21..0fc9e8b8827b 100644 --- a/drivers/platform/x86/toshiba_acpi.c +++ b/drivers/platform/x86/toshiba_acpi.c @@ -2353,7 +2353,7 @@ static struct attribute *toshiba_attributes[] = { static umode_t toshiba_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 toshiba_acpi_dev *drv = dev_get_drvdata(dev); bool exists = true; |