diff options
author | Dmitry Shmidt <dimitrysh@google.com> | 2011-06-08 15:02:00 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2011-06-14 11:48:50 -0700 |
commit | c497beb8743719a6e4f03a13aa99c5efd8faf270 (patch) | |
tree | 9297aac7ea3c76997223cd965e634774ddbf313b /arch/arm/mach-omap2/hsmmc.h | |
parent | 2a4ab4f125d7ee722ff0ba46393e31636ee477ba (diff) | |
download | kernel_samsung_tuna-c497beb8743719a6e4f03a13aa99c5efd8faf270.zip kernel_samsung_tuna-c497beb8743719a6e4f03a13aa99c5efd8faf270.tar.gz kernel_samsung_tuna-c497beb8743719a6e4f03a13aa99c5efd8faf270.tar.bz2 |
ARM: omap2: Add mmc_platform_data to hsmmc
Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
Diffstat (limited to 'arch/arm/mach-omap2/hsmmc.h')
-rw-r--r-- | arch/arm/mach-omap2/hsmmc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/hsmmc.h b/arch/arm/mach-omap2/hsmmc.h index f757e78..4bb6fbd 100644 --- a/arch/arm/mach-omap2/hsmmc.h +++ b/arch/arm/mach-omap2/hsmmc.h @@ -6,6 +6,8 @@ * published by the Free Software Foundation. */ +#include <asm/mach/mmc.h> + struct mmc_card; struct omap2_hsmmc_info { @@ -25,6 +27,7 @@ struct omap2_hsmmc_info { char *name; /* or NULL for default */ struct device *dev; /* returned: pointer to mmc adapter */ int ocr_mask; /* temporary HACK */ + struct mmc_platform_data *mmc_data; /* Remux (pad configuration) when powering on/off */ void (*remux)(struct device *dev, int slot, int power_on); /* init some special card */ |