diff options
author | Minghao Chi <chi.minghao@zte.com.cn> | 2022-04-25 13:53:39 +0300 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2022-05-04 12:53:44 +0300 |
commit | 0e8bb6666e3dcf18e4920a325028647da71eb500 (patch) | |
tree | 416beab4db8ecce88e3743ac39b7205b134f7886 /drivers/mmc | |
parent | 89877983ac60c1becf3cd6f161d2e2ac0aa6233a (diff) | |
download | linux-0e8bb6666e3dcf18e4920a325028647da71eb500.tar.xz |
mmc: core: use kobj_to_dev()
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>
Link: https://lore.kernel.org/r/20220425105339.3515368-1-chi.minghao@zte.com.cn
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/core/block.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/core/block.c b/drivers/mmc/core/block.c index 6cb701aa1abc..9def975df52b 100644 --- a/drivers/mmc/core/block.c +++ b/drivers/mmc/core/block.c @@ -330,7 +330,7 @@ static struct attribute *mmc_disk_attrs[] = { static umode_t mmc_disk_attrs_is_visible(struct kobject *kobj, struct attribute *a, int n) { - struct device *dev = container_of(kobj, struct device, kobj); + struct device *dev = kobj_to_dev(kobj); struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev)); umode_t mode = a->mode; |