diff options
author | Andrei Warkentin <andreiw@motorola.com> | 2011-04-11 17:02:15 -0500 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2011-05-24 21:00:54 -0400 |
commit | 32780cd1350e651e68bdf33b7f5b009d21d5b794 (patch) | |
tree | e8e86350a3eca20cca098b488e596d2b76ecaea8 /drivers/mmc/core/sdio.c | |
parent | f317dfeb86c83d03304a74ce5426a69422b79547 (diff) | |
download | linux-32780cd1350e651e68bdf33b7f5b009d21d5b794.tar.gz linux-32780cd1350e651e68bdf33b7f5b009d21d5b794.tar.bz2 linux-32780cd1350e651e68bdf33b7f5b009d21d5b794.zip |
mmc: quirks: Extends card quirks with MMC/SD quirks matching the CID.
The current mechanism is SDIO-only. This allows us to create
function-specific quirks, without creating messy Kconfig dependencies,
or polluting core/ with function-specific code.
Signed-off-by: Andrei Warkentin <andreiw@motorola.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/core/sdio.c')
-rw-r--r-- | drivers/mmc/core/sdio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/core/sdio.c b/drivers/mmc/core/sdio.c index a5840c0de2e4..1e6095961500 100644 --- a/drivers/mmc/core/sdio.c +++ b/drivers/mmc/core/sdio.c @@ -472,7 +472,7 @@ static int mmc_sdio_init_card(struct mmc_host *host, u32 ocr, card = oldcard; } - mmc_fixup_device(card); + mmc_fixup_device(card, NULL); if (card->type == MMC_TYPE_SD_COMBO) { err = mmc_sd_setup_card(host, card, oldcard != NULL); |