f74d132cec
All host drivers were #include:ing mmc/protocol.h just to get access to the OCR bit defines. Move these to host.h instead. Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
15 lines
311 B
C
15 lines
311 B
C
/*
|
|
* linux/include/asm-arm/mach/mmc.h
|
|
*/
|
|
#ifndef ASMARM_MACH_MMC_H
|
|
#define ASMARM_MACH_MMC_H
|
|
|
|
#include <linux/mmc/host.h>
|
|
|
|
struct mmc_platform_data {
|
|
unsigned int ocr_mask; /* available voltages */
|
|
u32 (*translate_vdd)(struct device *, unsigned int);
|
|
unsigned int (*status)(struct device *);
|
|
};
|
|
|
|
#endif
|