From: Jaehoon Chung Date: Fri, 30 Dec 2016 06:30:12 +0000 (+0900) Subject: mmc: sdhci: add the get_cd callback function in sdhci_ops X-Git-Tag: v2017.03-rc1~160 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=309bf02cde07b36f61d82576db06cac7d2293580;p=platform%2Fkernel%2Fu-boot.git mmc: sdhci: add the get_cd callback function in sdhci_ops Some SoCs can have their own card dect scheme. Then they may use this get_cd callback function after implementing init in their drivers. Signed-off-by: Jaehoon Chung --- diff --git a/include/sdhci.h b/include/sdhci.h index 144570f..0c0f48f 100644 --- a/include/sdhci.h +++ b/include/sdhci.h @@ -235,6 +235,7 @@ struct sdhci_ops { void (*write_w)(struct sdhci_host *host, u16 val, int reg); void (*write_b)(struct sdhci_host *host, u8 val, int reg); #endif + int (*get_cd)(struct sdhci_host *host); }; struct sdhci_host {