diff options
| author | Rabin Vincent <rabin@rab.in> | 2009-02-13 12:25:26 -0500 |
|---|---|---|
| committer | Pierre Ossman <drzeus@drzeus.cx> | 2009-02-18 15:01:14 -0500 |
| commit | 58a5dd3e0e77029d3db1f8fa75d0b54b38169d5d (patch) | |
| tree | 87d901456c19394f31b8344790ffd285891be6cc | |
| parent | 994244883739e4044bef76d4e5d7a9b66dc6c7b6 (diff) | |
mmc_test: fix basic read test
Due to a typo in the Basic Read test, it's currently identical to the
Basic Write test. Fix this.
Signed-off-by: Rabin Vincent <rabin@rab.in>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
| -rw-r--r-- | drivers/mmc/card/mmc_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/card/mmc_test.c b/drivers/mmc/card/mmc_test.c index b92b172074ee..b9f1e84897cc 100644 --- a/drivers/mmc/card/mmc_test.c +++ b/drivers/mmc/card/mmc_test.c | |||
| @@ -494,7 +494,7 @@ static int mmc_test_basic_read(struct mmc_test_card *test) | |||
| 494 | 494 | ||
| 495 | sg_init_one(&sg, test->buffer, 512); | 495 | sg_init_one(&sg, test->buffer, 512); |
| 496 | 496 | ||
| 497 | ret = mmc_test_simple_transfer(test, &sg, 1, 0, 1, 512, 1); | 497 | ret = mmc_test_simple_transfer(test, &sg, 1, 0, 1, 512, 0); |
| 498 | if (ret) | 498 | if (ret) |
| 499 | return ret; | 499 | return ret; |
| 500 | 500 | ||
