Files
kernel/arch/arm/include/asm/mach/mmc.h
T

18 lines
338 B
C
Raw Normal View History

2005-04-16 15:20:36 -07: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