diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2011-11-28 09:22:00 -0500 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2012-01-11 23:58:43 -0500 |
commit | d30495048892980e5d453328d1cc9343b3f7e917 (patch) | |
tree | eff2ac501e38bad357c837eb6bf2835f7e83eba8 /include/linux/mmc/host.h | |
parent | 482fce997e143a8d5429406fe066d31aa76ef70a (diff) |
mmc: allow upper layers to know immediately if card has been removed
Add a function mmc_detect_card_removed() which upper layers can use to
determine immediately if a card has been removed. This function should
be called after an I/O request fails so that all queued I/O requests
can be errored out immediately instead of waiting for the card device
to be removed.
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Acked-by: Sujit Reddy Thumma <sthumma@codeaurora.org>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'include/linux/mmc/host.h')
-rw-r--r-- | include/linux/mmc/host.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index 706f72279a17..9a03d0335745 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h | |||
@@ -299,6 +299,7 @@ struct mmc_host { | |||
299 | int claim_cnt; /* "claim" nesting count */ | 299 | int claim_cnt; /* "claim" nesting count */ |
300 | 300 | ||
301 | struct delayed_work detect; | 301 | struct delayed_work detect; |
302 | int detect_change; /* card detect flag */ | ||
302 | 303 | ||
303 | const struct mmc_bus_ops *bus_ops; /* current bus driver */ | 304 | const struct mmc_bus_ops *bus_ops; /* current bus driver */ |
304 | unsigned int bus_refs; /* reference counter */ | 305 | unsigned int bus_refs; /* reference counter */ |