summaryrefslogtreecommitdiffstats
path: root/drivers/mmc/core
diff options
context:
space:
mode:
authorTian Tao <tiantao6@hisilicon.com>2020-08-24 09:02:36 +0800
committerUlf Hansson <ulf.hansson@linaro.org>2020-09-07 09:11:30 +0200
commite449d983811211592dad6f5ef8b25d5549be5e8e (patch)
tree233b247363c10dc3acccf1fa3a988d23ec5405d5 /drivers/mmc/core
parent43611afb6c178d4f07461fd4d4832e0da3762386 (diff)
downloadlinux-e449d983811211592dad6f5ef8b25d5549be5e8e.tar.gz
linux-e449d983811211592dad6f5ef8b25d5549be5e8e.tar.bz2
linux-e449d983811211592dad6f5ef8b25d5549be5e8e.zip
mmc: sd: Use kobj_to_dev() instead of container_of()
Use kobj_to_dev() instead of container_of() Signed-off-by: Tian Tao <tiantao6@hisilicon.com> Link: https://lore.kernel.org/r/1598230956-58523-1-git-send-email-tiantao6@hisilicon.com Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc/core')
-rw-r--r--drivers/mmc/core/sd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/core/sd.c b/drivers/mmc/core/sd.c
index 429ca14fa7e1..6f054c449d46 100644
--- a/drivers/mmc/core/sd.c
+++ b/drivers/mmc/core/sd.c
@@ -759,7 +759,7 @@ static struct attribute *sd_std_attrs[] = {
static umode_t sd_std_is_visible(struct kobject *kobj, struct attribute *attr,
int index)
{
- struct device *dev = container_of(kobj, struct device, kobj);
+ struct device *dev = kobj_to_dev(kobj);
struct mmc_card *card = mmc_dev_to_card(dev);
/* CIS vendor and device ids, revision and info string are available only for Combo cards */