Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 218974
b: refs/heads/master
c: 453722b
h: refs/heads/master
v: v3
  • Loading branch information
Andy Shevchenko authored and Chris Ball committed Oct 23, 2010
1 parent 1a23ead commit 6b7ea5d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 12578f66b9058e63f193fbfe1552e1d1bfa361bb
refs/heads/master: 453722b9f7366e5b8b46101358dd7bcaef62b59d
4 changes: 1 addition & 3 deletions trunk/drivers/mmc/card/mmc_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -1935,12 +1935,10 @@ static ssize_t mmc_test_show(struct device *dev,
static ssize_t mmc_test_store(struct device *dev,
struct device_attribute *attr, const char *buf, size_t count)
{
struct mmc_card *card;
struct mmc_card *card = dev_to_mmc_card(dev);
struct mmc_test_card *test;
int testcase;

card = container_of(dev, struct mmc_card, dev);

testcase = simple_strtol(buf, NULL, 10);

test = kzalloc(sizeof(struct mmc_test_card), GFP_KERNEL);
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/mmc/core/bus.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
#include "sdio_cis.h"
#include "bus.h"

#define dev_to_mmc_card(d) container_of(d, struct mmc_card, dev)
#define to_mmc_driver(d) container_of(d, struct mmc_driver, drv)

static ssize_t mmc_type_show(struct device *dev,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/mmc/core/bus.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#define MMC_DEV_ATTR(name, fmt, args...) \
static ssize_t mmc_##name##_show (struct device *dev, struct device_attribute *attr, char *buf) \
{ \
struct mmc_card *card = container_of(dev, struct mmc_card, dev); \
struct mmc_card *card = dev_to_mmc_card(dev); \
return sprintf(buf, fmt, args); \
} \
static DEVICE_ATTR(name, S_IRUGO, mmc_##name##_show, NULL)
Expand Down
2 changes: 2 additions & 0 deletions trunk/include/linux/mmc/card.h
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,8 @@ 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_list_to_card(l) container_of(l, struct mmc_card, node)
#define mmc_get_drvdata(c) dev_get_drvdata(&(c)->dev)
#define mmc_set_drvdata(c,d) dev_set_drvdata(&(c)->dev, d)
Expand Down

0 comments on commit 6b7ea5d

Please sign in to comment.