dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Andrei Warkentin 2011-04-11 19:11:04 -04:00 committed by Chris Ball
parent 371a689f64
commit 6f60c22252
1 changed files with 7 additions and 0 deletions

View File

@ -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;