@@ -2464,6 +2464,13 @@ int mmc_hw_reset(struct mmc_host *host)
}
EXPORT_SYMBOL(mmc_hw_reset);
+
+int card_alive(struct mmc_card *card)
+{
+ return card->host->bus_ops->alive(card->host);
+}
+EXPORT_SYMBOL(card_alive);
+
static int mmc_rescan_try_freq(struct mmc_host *host, unsigned freq)
{
host->f_init = freq;
@@ -526,6 +526,7 @@ struct mmc_driver {
void (*shutdown)(struct mmc_card *);
};
+extern int card_alive(struct mmc_card *);
extern int mmc_register_driver(struct mmc_driver *);
extern void mmc_unregister_driver(struct mmc_driver *);
Depending of the type of card there is a different operation to know if the car is alive. However, the access to this operation are private. This patch introduce a new function allowing to know if the card is alive by using the appropriate operation. Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com> --- drivers/mmc/core/core.c | 7 +++++++ include/linux/mmc/card.h | 1 + 2 files changed, 8 insertions(+)