aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/card/mmc_test.c
diff options
context:
space:
mode:
authorPawel Moll <pawel.moll@arm.com>2011-02-06 15:06:24 -0500
committerChris Ball <cjb@laptop.org>2011-03-15 13:48:28 -0400
commit54d6b44a5f0da708e8a9e496df304e05e8748ef9 (patch)
tree204c598ca8e9cf494276aa59f28100a41a4c1a8a /drivers/mmc/card/mmc_test.c
parent732f0e31db03c84005578927ed9d4e996c3c0020 (diff)
mmc: mmc_test: Only warn about not waiting for busy if it's supported
If the MMC host controller does not support waiting for card signaling busy state (MMC_CAP_WAIT_WHILE_BUSY cap), there is no point in prining the relevant warning message. Signed-off-by: Pawel Moll <pawel.moll@arm.com> Reviewed-by: Matt Fleming <matt@console-pimps.org> Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/card/mmc_test.c')
-rw-r--r--drivers/mmc/card/mmc_test.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/mmc/card/mmc_test.c b/drivers/mmc/card/mmc_test.c
index 21adc27f4132..0131c6c0d8f6 100644
--- a/drivers/mmc/card/mmc_test.c
+++ b/drivers/mmc/card/mmc_test.c
@@ -226,9 +226,10 @@ static int mmc_test_wait_busy(struct mmc_test_card *test)
226 226
227 if (!busy && mmc_test_busy(&cmd)) { 227 if (!busy && mmc_test_busy(&cmd)) {
228 busy = 1; 228 busy = 1;
229 printk(KERN_INFO "%s: Warning: Host did not " 229 if (test->card->host->caps & MMC_CAP_WAIT_WHILE_BUSY)
230 "wait for busy state to end.\n", 230 printk(KERN_INFO "%s: Warning: Host did not "
231 mmc_hostname(test->card->host)); 231 "wait for busy state to end.\n",
232 mmc_hostname(test->card->host));
232 } 233 }
233 } while (mmc_test_busy(&cmd)); 234 } while (mmc_test_busy(&cmd));
234 235