aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/core/core.c
diff options
context:
space:
mode:
authorUlf Hansson <ulf.hansson@stericsson.com>2011-03-09 03:11:02 -0500
committerChris Ball <cjb@laptop.org>2011-03-17 15:35:11 -0400
commitab1efd271704416c9e6e9cb4e5f58e7e4c4260e6 (patch)
tree6199d0a57592537c2e1f050754415225561c6b48 /drivers/mmc/core/core.c
parent0aab3995485b8a994bf29a995a008c9ea4a28054 (diff)
mmc: core: export function mmc_do_release_host()
When using mmc_try_claim_host the corresponding release function is mmc_do_release_host, which then also must be exported. Reviewed-by: Jonas Aberg <jonas.aberg@stericsson.com> Reviewed-by: Sebastian Rasmussen <sebastian.rasmussen@stericsson.com> Signed-off-by: Ulf Hansson <ulf.hansson@stericsson.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/core/core.c')
-rw-r--r--drivers/mmc/core/core.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c
index c47e13b79eee..4956da133be4 100644
--- a/drivers/mmc/core/core.c
+++ b/drivers/mmc/core/core.c
@@ -527,7 +527,14 @@ int mmc_try_claim_host(struct mmc_host *host)
527} 527}
528EXPORT_SYMBOL(mmc_try_claim_host); 528EXPORT_SYMBOL(mmc_try_claim_host);
529 529
530static void mmc_do_release_host(struct mmc_host *host) 530/**
531 * mmc_do_release_host - release a claimed host
532 * @host: mmc host to release
533 *
534 * If you successfully claimed a host, this function will
535 * release it again.
536 */
537void mmc_do_release_host(struct mmc_host *host)
531{ 538{
532 unsigned long flags; 539 unsigned long flags;
533 540
@@ -542,6 +549,7 @@ static void mmc_do_release_host(struct mmc_host *host)
542 wake_up(&host->wq); 549 wake_up(&host->wq);
543 } 550 }
544} 551}
552EXPORT_SYMBOL(mmc_do_release_host);
545 553
546void mmc_host_deeper_disable(struct work_struct *work) 554void mmc_host_deeper_disable(struct work_struct *work)
547{ 555{