mmc.h 310 字节
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 *  arch/arm/include/asm/mach/mmc.h
L
Linus Torvalds 已提交
3 4 5 6
 */
#ifndef ASMARM_MACH_MMC_H
#define ASMARM_MACH_MMC_H

P
Pierre Ossman 已提交
7
#include <linux/mmc/host.h>
L
Linus Torvalds 已提交
8 9 10 11 12 13 14 15

struct mmc_platform_data {
	unsigned int ocr_mask;			/* available voltages */
	u32 (*translate_vdd)(struct device *, unsigned int);
	unsigned int (*status)(struct device *);
};

#endif