omap: Rename hsmmc symbols to reflect independence from twl4030

hsmmc.[ch] no longer has any dependency on twl4030
and variable names should be renamed to reflect that.

Signed-off-by: Adrian Hunter <adrian.hunter@nokia.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
Adrian Hunter
2010-02-15 10:03:34 -08:00
committed by Tony Lindgren
parent d02a900b59
commit 68ff04231c
14 changed files with 45 additions and 47 deletions

View File

@ -6,7 +6,7 @@
* published by the Free Software Foundation.
*/
struct twl4030_hsmmc_info {
struct omap2_hsmmc_info {
u8 mmc; /* controller 1/2/3 */
u8 wires; /* 1/4/8 wires */
bool transceiver; /* MMC-2 option */
@ -23,11 +23,11 @@ struct twl4030_hsmmc_info {
#if defined(CONFIG_MMC_OMAP_HS) || defined(CONFIG_MMC_OMAP_HS_MODULE)
void twl4030_mmc_init(struct twl4030_hsmmc_info *);
void omap2_hsmmc_init(struct omap2_hsmmc_info *);
#else
static inline void twl4030_mmc_init(struct twl4030_hsmmc_info *info)
static inline void omap2_hsmmc_init(struct omap2_hsmmc_info *info)
{
}