diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2016-01-25 19:20:04 (GMT) |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2016-02-29 10:02:54 (GMT) |
commit | 1ac109ddc959f404e18addac24c6ddff6586cf48 (patch) | |
tree | ac157e9cb528ac3a6f255d297e0a69a6a8fb7a2f /drivers | |
parent | 963b14ffbcdba13a4e4d4ecf9123ec9ac51e18cd (diff) | |
download | linux-1ac109ddc959f404e18addac24c6ddff6586cf48.tar.xz |
mmc: mmc_test: mention that '0' runs all tests
I had to use the source to determine what I need to write to 'test' so
that all tests are run. Let's mention this explicitly in 'testlist'.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mmc/card/mmc_test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/card/mmc_test.c b/drivers/mmc/card/mmc_test.c index 7fc9174..c032eef 100644 --- a/drivers/mmc/card/mmc_test.c +++ b/drivers/mmc/card/mmc_test.c @@ -2829,6 +2829,7 @@ static int mtf_testlist_show(struct seq_file *sf, void *data) mutex_lock(&mmc_test_lock); + seq_printf(sf, "0:\tRun all tests\n"); for (i = 0; i < ARRAY_SIZE(mmc_test_cases); i++) seq_printf(sf, "%d:\t%s\n", i+1, mmc_test_cases[i].name); |