diff options
author | Pierre Tardy <pierre.tardy@intel.com> | 2011-02-06 19:03:46 +0100 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2011-03-15 13:48:33 -0400 |
commit | 57f0adc7eaaf4315d568e72069dbe48aa7e20995 (patch) | |
tree | 233c66fd4f21b977f532702ce9427023b2e53e09 /drivers/mmc/core/Makefile | |
parent | 66c036e0142fed2484d58a2d3c7a4d21ba32b6a6 (diff) |
mmc: add per device quirk placeholder
Some cards have quirks valid for every platforms using current
platform quirk hooks leads to a lot of code and debug duplication.
So we inspire a bit from what exists in PCI subsystem and do our own
per vendorid/deviceid quirk. We still drop the complexity of the pci
quirk system (with special section tables, and so on).
That can be added later if needed.
Signed-off-by: Pierre Tardy <pierre.tardy@intel.com>
Acked-by: Linus Walleij <linus.walleij@stericsson.com>
Acked-by: Ohad Ben-Cohen <ohad@wizery.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/core/Makefile')
-rw-r--r-- | drivers/mmc/core/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mmc/core/Makefile b/drivers/mmc/core/Makefile index 86b47911933..639501970b4 100644 --- a/drivers/mmc/core/Makefile +++ b/drivers/mmc/core/Makefile @@ -6,6 +6,7 @@ obj-$(CONFIG_MMC) += mmc_core.o mmc_core-y := core.o bus.o host.o \ mmc.o mmc_ops.o sd.o sd_ops.o \ sdio.o sdio_ops.o sdio_bus.o \ - sdio_cis.o sdio_io.o sdio_irq.o + sdio_cis.o sdio_io.o sdio_irq.o \ + quirks.o mmc_core-$(CONFIG_DEBUG_FS) += debugfs.o |