summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndy Shevchenko <andy.shevchenko@gmail.com>2010-09-18 02:32:25 +0200
committerChris Ball <cjb@laptop.org>2010-10-23 15:11:12 +0200
commit265cdc900ce93c0cd2465d751fe75ff2e55e126e (patch)
treefcd524ca79da6410163c2c6dd58d0f0a933befed /include
parentmmc: make mmc_dev_to_card() macro public (diff)
downloadlinux-265cdc900ce93c0cd2465d751fe75ff2e55e126e.tar.xz
linux-265cdc900ce93c0cd2465d751fe75ff2e55e126e.zip
mmc: rename dev_to_mmc_card() to mmc_dev_to_card()
Global symbols should use their subsystem name in a prefixed fashion. Signed-off-by: Andy Shevchenko <ext-andriy.shevchenko@nokia.com> Cc: <linux-mmc@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/mmc/card.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mmc/card.h b/include/linux/mmc/card.h
index 71acf19ecaf3..7bd49234cd88 100644
--- a/include/linux/mmc/card.h
+++ b/include/linux/mmc/card.h
@@ -173,7 +173,7 @@ static inline int mmc_blksz_for_byte_mode(const struct mmc_card *c)
#define mmc_card_name(c) ((c)->cid.prod_name)
#define mmc_card_id(c) (dev_name(&(c)->dev))
-#define dev_to_mmc_card(d) container_of(d, struct mmc_card, dev)
+#define mmc_dev_to_card(d) container_of(d, struct mmc_card, dev)
#define mmc_list_to_card(l) container_of(l, struct mmc_card, node)
#define mmc_get_drvdata(c) dev_get_drvdata(&(c)->dev)