diff options
author | Pierre Ossman <drzeus@drzeus.cx> | 2007-02-11 20:43:19 +0100 |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2007-05-01 13:04:17 +0200 |
commit | 3b91e5507cddaca53bccf1524ff11a0ac5c85531 (patch) | |
tree | 50d0df36aafa5b8f3a0abd5753457e50a3638041 /include/linux/mmc/host.h | |
parent | 1c6a0718f0bfdab0d9b7da5f7b74f38a0058c03a (diff) | |
download | blackbird-obmc-linux-3b91e5507cddaca53bccf1524ff11a0ac5c85531.tar.gz blackbird-obmc-linux-3b91e5507cddaca53bccf1524ff11a0ac5c85531.zip |
mmc: Flush pending detects on host removal
Make sure we kill of any pending detection runs when the host
is removed instead of when it is freed. Also add some debugging
to make sure the driver doesn't queue up more detection after it
has removed the host.
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'include/linux/mmc/host.h')
-rw-r--r-- | include/linux/mmc/host.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index c89f41091304..92efe8e5be7e 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h @@ -147,6 +147,9 @@ struct mmc_host { struct mmc_card *card_selected; /* the selected MMC card */ struct delayed_work detect; +#ifdef CONFIG_MMC_DEBUG + unsigned int removed:1; /* host is being removed */ +#endif unsigned long private[0] ____cacheline_aligned; }; |