Home
last modified time | relevance | path

Searched refs:mmc_type (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/u-boot/drivers/mmc/
H A Dmmc_legacy.c86 char *mmc_type; in print_mmc_devices() local
92 mmc_type = IS_SD(m) ? "SD" : "eMMC"; in print_mmc_devices()
94 mmc_type = NULL; in print_mmc_devices()
97 if (mmc_type) in print_mmc_devices()
98 printf(" (%s)", mmc_type); in print_mmc_devices()
H A Dmmc-uclass.c241 char *mmc_type; in print_mmc_devices() local
255 mmc_type = IS_SD(m) ? "SD" : "eMMC"; in print_mmc_devices()
257 mmc_type = NULL; in print_mmc_devices()
260 if (mmc_type) in print_mmc_devices()
261 printf(" (%s)", mmc_type); in print_mmc_devices()
/OK3568_Linux_fs/kernel/drivers/mmc/core/
H A Dmmc.c947 static struct device_type mmc_type = { variable
1721 card = mmc_alloc_card(host, &mmc_type); in mmc_init_card()