diff options
author | Sandeep Paulraj | 2010-12-20 20:01:21 -0500 |
---|---|---|
committer | Albert Aribaud | 2011-02-02 00:54:44 +0100 |
commit | 57418d2139f032f9dae8cea38917aa90fdd673d8 (patch) | |
tree | f14c2061d406b8a56bf0c77fa16540eef0de0a34 /include/mmc.h | |
parent | 36b4e2dddd3ee481411fa50e1c34dbf823eb5f5d (diff) |
Davinci MMCSD Support
Added support for MMC/SD cards for Davinci. This feature is enabled by
CONFIG_DAVINCI_MMC and is dependant on CONFIG_MMC and CONFIG_GENERIC_MMC
options. This is tested on DM355 and DM365 EVMs with both the available mmc
controllers.
Signed-off-by: Alagu Sankar <alagusankar@embwise.com>
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'include/mmc.h')
-rw-r--r-- | include/mmc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/mmc.h b/include/mmc.h index 74c0b1d0ee9..fcd0fd1de57 100644 --- a/include/mmc.h +++ b/include/mmc.h @@ -274,6 +274,9 @@ struct mmc { struct mmc_cmd *cmd, struct mmc_data *data); void (*set_ios)(struct mmc *mmc); int (*init)(struct mmc *mmc); +#ifdef CONFIG_MMC_MBLOCK + uint b_max; +#endif }; int mmc_register(struct mmc *mmc); |