diff options
author | Pierre Ossman <drzeus@drzeus.cx> | 2006-12-30 18:11:32 -0500 |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2007-05-01 07:41:06 -0400 |
commit | 7ea239d9e6d6993469a6a8ca83ff23834dfc3fce (patch) | |
tree | 40629c00e317ca8f4ce0a6394dcb4b7535e7b7ab /drivers/mmc/core/Makefile | |
parent | b2670b1c6ddd54be4a0f72f853122510ea5ef285 (diff) |
mmc: add bus handler
Delegate protocol handling to "bus handlers". This allows the core to
just handle the task of arbitrating the bus. Initialisation and
pampering of cards is now done by the different bus handlers.
This design also allows MMC and SD (and later SDIO) to be more cleanly
separated, allowing easier maintenance.
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc/core/Makefile')
-rw-r--r-- | drivers/mmc/core/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/core/Makefile b/drivers/mmc/core/Makefile index 5977abf3e41b..1075b02ae754 100644 --- a/drivers/mmc/core/Makefile +++ b/drivers/mmc/core/Makefile | |||
@@ -7,5 +7,5 @@ ifeq ($(CONFIG_MMC_DEBUG),y) | |||
7 | endif | 7 | endif |
8 | 8 | ||
9 | obj-$(CONFIG_MMC) += mmc_core.o | 9 | obj-$(CONFIG_MMC) += mmc_core.o |
10 | mmc_core-y := core.o sysfs.o mmc_ops.o sd_ops.o | 10 | mmc_core-y := core.o sysfs.o mmc.o mmc_ops.o sd.o sd_ops.o |
11 | 11 | ||