aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mmc
diff options
context:
space:
mode:
authorNicolas Pitre <nico@cam.org>2007-06-30 10:21:52 -0400
committerPierre Ossman <drzeus@drzeus.cx>2007-09-23 14:55:13 -0400
commit2342f3323c9a76367a1d7f9a35525ee3cb3911df (patch)
tree1fdb42702137dfbe0be0c2e1c6777a0c0ddb1bcf /include/linux/mmc
parent55fe77a0a24e05c9aaf1a13550dde5efad8b49f2 (diff)
sdio: allow for mmc_claim_host to be aborted
It is sometimes necessary to give up on trying to claim the host lock, especially if that happens in a thread that has to be stopped. While at it, fix the description for mmc_claim_host() which was wrong. Signed-off-by: Nicolas Pitre <npitre@mvista.com> Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'include/linux/mmc')
-rw-r--r--include/linux/mmc/core.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/include/linux/mmc/core.h b/include/linux/mmc/core.h
index 43a92736be63..8945da9b54fa 100644
--- a/include/linux/mmc/core.h
+++ b/include/linux/mmc/core.h
@@ -114,7 +114,18 @@ extern int mmc_wait_for_app_cmd(struct mmc_host *, struct mmc_card *,
114 114
115extern void mmc_set_data_timeout(struct mmc_data *, const struct mmc_card *); 115extern void mmc_set_data_timeout(struct mmc_data *, const struct mmc_card *);
116 116
117extern void mmc_claim_host(struct mmc_host *host); 117extern int __mmc_claim_host(struct mmc_host *host, atomic_t *abort);
118extern void mmc_release_host(struct mmc_host *host); 118extern void mmc_release_host(struct mmc_host *host);
119 119
120/**
121 * mmc_claim_host - exclusively claim a host
122 * @host: mmc host to claim
123 *
124 * Claim a host for a set of operations.
125 */
126static inline void mmc_claim_host(struct mmc_host *host)
127{
128 __mmc_claim_host(host, NULL);
129}
130
120#endif 131#endif