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>
12 lines
217 B
C
12 lines
217 B
C
#ifndef ASMARM_ARCH_MMC_H
|
|
#define ASMARM_ARCH_MMC_H
|
|
|
|
#include <linux/mmc/host.h>
|
|
|
|
struct imxmmc_platform_data {
|
|
int (*card_present)(void);
|
|
};
|
|
|
|
extern void imx_set_mmc_info(struct imxmmc_platform_data *info);
|
|
|
|
#endif
|