blob: 9718063a211959472bce3f7990cbdd5e8257948b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef ASMARM_ARCH_MMC_H
2#define ASMARM_ARCH_MMC_H
3
4#include <linux/mmc/protocol.h>
5#include <linux/interrupt.h>
6
7struct device;
8struct mmc_host;
9
10struct pxamci_platform_data {
11 unsigned int ocr_mask; /* available voltages */
12 int (*init)(struct device *, irqreturn_t (*)(int, void *, struct pt_regs *), void *);
Richard Purdiee6195242005-09-06 15:18:56 -070013 int (*get_ro)(struct device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 void (*setpower)(struct device *, unsigned int);
15 void (*exit)(struct device *, void *);
16};
17
18extern void pxa_set_mci_info(struct pxamci_platform_data *info);
19
20#endif