diff options
author | Andrei Warkentin <andreiw@motorola.com> | 2011-04-12 01:11:04 +0200 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2011-05-25 03:01:25 +0200 |
commit | 6f60c22252af05df94352240f30f9fc84090d88d (patch) | |
tree | f7c4f8c9cc726491c8f515b0f87a6905795ae819 /drivers/mmc/card | |
parent | mmc: MMC boot partitions support. (diff) | |
download | linux-6f60c22252af05df94352240f30f9fc84090d88d.tar.xz linux-6f60c22252af05df94352240f30f9fc84090d88d.zip |
mmc: quirks: Support for block quirks.
Block quirks implemented using core/quirks.c support.
Signed-off-by: Andrei Warkentin <andreiw@motorola.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/card')
-rw-r--r-- | drivers/mmc/card/block.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c index 1e6bd910e79e..288d27394ef9 100644 --- a/drivers/mmc/card/block.c +++ b/drivers/mmc/card/block.c @@ -939,6 +939,11 @@ static int mmc_add_disk(struct mmc_blk_data *md) return ret; } +static const struct mmc_fixup blk_fixups[] = +{ + END_FIXUP +}; + static int mmc_blk_probe(struct mmc_card *card) { struct mmc_blk_data *md, *part_md; @@ -969,6 +974,8 @@ static int mmc_blk_probe(struct mmc_card *card) goto out; mmc_set_drvdata(card, md); + mmc_fixup_device(card, blk_fixups); + if (mmc_add_disk(md)) goto out; |