Commit 551d6bde authored by Adrian Hunter's avatar Adrian Hunter Committed by Ulf Hansson

mmc: sdhci: Stop exporting sdhci_enable_irq_wakeups()

Now that it is not being used by any drivers, stop exporting it.
Signed-off-by: default avatarAdrian Hunter <adrian.hunter@intel.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent e92cc35d
...@@ -2828,7 +2828,7 @@ static irqreturn_t sdhci_thread_irq(int irq, void *dev_id) ...@@ -2828,7 +2828,7 @@ static irqreturn_t sdhci_thread_irq(int irq, void *dev_id)
* sdhci_disable_irq_wakeups() since it will be set by * sdhci_disable_irq_wakeups() since it will be set by
* sdhci_enable_card_detection() or sdhci_init(). * sdhci_enable_card_detection() or sdhci_init().
*/ */
void sdhci_enable_irq_wakeups(struct sdhci_host *host) static void sdhci_enable_irq_wakeups(struct sdhci_host *host)
{ {
u8 val; u8 val;
u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
...@@ -2846,7 +2846,6 @@ void sdhci_enable_irq_wakeups(struct sdhci_host *host) ...@@ -2846,7 +2846,6 @@ void sdhci_enable_irq_wakeups(struct sdhci_host *host)
sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL); sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
sdhci_writel(host, irq_val, SDHCI_INT_ENABLE); sdhci_writel(host, irq_val, SDHCI_INT_ENABLE);
} }
EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups);
static void sdhci_disable_irq_wakeups(struct sdhci_host *host) static void sdhci_disable_irq_wakeups(struct sdhci_host *host)
{ {
......
...@@ -718,7 +718,6 @@ void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable); ...@@ -718,7 +718,6 @@ void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable);
#ifdef CONFIG_PM #ifdef CONFIG_PM
int sdhci_suspend_host(struct sdhci_host *host); int sdhci_suspend_host(struct sdhci_host *host);
int sdhci_resume_host(struct sdhci_host *host); int sdhci_resume_host(struct sdhci_host *host);
void sdhci_enable_irq_wakeups(struct sdhci_host *host);
int sdhci_runtime_suspend_host(struct sdhci_host *host); int sdhci_runtime_suspend_host(struct sdhci_host *host);
int sdhci_runtime_resume_host(struct sdhci_host *host); int sdhci_runtime_resume_host(struct sdhci_host *host);
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment