Home
last modified time | relevance | path

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

/openbmc/u-boot/drivers/mmc/
H A Dmmc_legacy.c106 char *mmc_type; in print_mmc_devices() local
112 mmc_type = IS_SD(m) ? "SD" : "eMMC"; in print_mmc_devices()
114 mmc_type = NULL; in print_mmc_devices()
117 if (mmc_type) in print_mmc_devices()
118 printf(" (%s)", mmc_type); in print_mmc_devices()
H A Dmmc-uclass.c258 char *mmc_type; in print_mmc_devices() local
272 mmc_type = IS_SD(m) ? "SD" : "eMMC"; in print_mmc_devices()
274 mmc_type = NULL; in print_mmc_devices()
277 if (mmc_type) in print_mmc_devices()
278 printf(" (%s)", mmc_type); in print_mmc_devices()
/openbmc/linux/drivers/mmc/core/
H A Dmmc.c878 static struct device_type mmc_type = { variable
1657 card = mmc_alloc_card(host, &mmc_type); in mmc_init_card()