Lines Matching refs:mmc_host
13 struct mmc_host;
18 void (*pre_power_on)(struct mmc_host *host);
19 void (*post_power_on)(struct mmc_host *host);
20 void (*power_off)(struct mmc_host *host);
21 void (*reset)(struct mmc_host *host);
36 int mmc_pwrseq_alloc(struct mmc_host *host);
37 void mmc_pwrseq_pre_power_on(struct mmc_host *host);
38 void mmc_pwrseq_post_power_on(struct mmc_host *host);
39 void mmc_pwrseq_power_off(struct mmc_host *host);
40 void mmc_pwrseq_reset(struct mmc_host *host);
41 void mmc_pwrseq_free(struct mmc_host *host);
50 static inline int mmc_pwrseq_alloc(struct mmc_host *host) { return 0; } in mmc_pwrseq_alloc()
51 static inline void mmc_pwrseq_pre_power_on(struct mmc_host *host) {} in mmc_pwrseq_pre_power_on()
52 static inline void mmc_pwrseq_post_power_on(struct mmc_host *host) {} in mmc_pwrseq_post_power_on()
53 static inline void mmc_pwrseq_power_off(struct mmc_host *host) {} in mmc_pwrseq_power_off()
54 static inline void mmc_pwrseq_reset(struct mmc_host *host) {} in mmc_pwrseq_reset()
55 static inline void mmc_pwrseq_free(struct mmc_host *host) {} in mmc_pwrseq_free()