Home | History | Annotate | Download | only in mmc

Lines Matching full:host

2  *  linux/include/linux/mmc/host.h
8 * Host driver specific definitions.
68 void (*request)(struct mmc_host *host, struct mmc_request *req);
69 void (*set_ios)(struct mmc_host *host, struct mmc_ios *ios);
70 int (*get_ro)(struct mmc_host *host);
85 unsigned long caps; /* Host capabilities */
87 #define MMC_CAP_4_BIT_DATA (1 << 0) /* Can the host do 4 bit transfers */
89 /* host specific block data */
100 unsigned int mode; /* current card mode of host */
104 struct list_head cards; /* devices attached to this host */
108 struct mmc_card *card_busy; /* the MMC card claiming host */
121 static inline void *mmc_priv(struct mmc_host *host)
123 return (void *)host->private;