This source file includes following definitions.
- omap_hsmmc_init
- omap_hsmmc_late_init
1
2
3
4
5
6 struct mmc_card;
7
8 struct omap2_hsmmc_info {
9 u8 mmc;
10 u32 caps;
11
12 struct platform_device *pdev;
13
14 void (*init_card)(struct mmc_card *card);
15 };
16
17 #if IS_ENABLED(CONFIG_MMC_OMAP_HS)
18
19 void omap_hsmmc_init(struct omap2_hsmmc_info *);
20 void omap_hsmmc_late_init(struct omap2_hsmmc_info *);
21
22 #else
23
24 static inline void omap_hsmmc_init(struct omap2_hsmmc_info *info)
25 {
26 }
27
28 static inline void omap_hsmmc_late_init(struct omap2_hsmmc_info *info)
29 {
30 }
31
32 #endif