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