2005-04-16 15:20:36 -07:00
|
|
|
/*
|
2008-08-02 10:55:55 +01:00
|
|
|
* arch/arm/include/asm/mach/mmc.h
|
2005-04-16 15:20:36 -07:00
|
|
|
*/
|
|
|
|
#ifndef ASMARM_MACH_MMC_H
|
|
|
|
#define ASMARM_MACH_MMC_H
|
|
|
|
|
2007-02-09 22:49:31 +01:00
|
|
|
#include <linux/mmc/host.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
struct mmc_platform_data {
|
|
|
|
unsigned int ocr_mask; /* available voltages */
|
|
|
|
u32 (*translate_vdd)(struct device *, unsigned int);
|
|
|
|
unsigned int (*status)(struct device *);
|
2009-07-09 15:15:12 +01:00
|
|
|
int gpio_wp;
|
|
|
|
int gpio_cd;
|
2005-04-16 15:20:36 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|