projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9942448
)
mmc_test: fix basic read test
author
Rabin Vincent
<rabin@rab.in>
Fri, 13 Feb 2009 17:25:26 +0000
(22:55 +0530)
committer
Pierre Ossman
<drzeus@drzeus.cx>
Wed, 18 Feb 2009 20:01:14 +0000
(21:01 +0100)
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>
drivers/mmc/card/mmc_test.c
patch
|
blob
|
history
diff --git
a/drivers/mmc/card/mmc_test.c
b/drivers/mmc/card/mmc_test.c
index b92b172074ee5a6f2b698a0292951b900dbd3008..b9f1e84897cc14fc2cbfa1e12adff95b4b93bb2e 100644
(file)
--- 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)
sg_init_one(&sg, test->buffer, 512);
- ret = mmc_test_simple_transfer(test, &sg, 1, 0, 1, 512,
1
);
+ ret = mmc_test_simple_transfer(test, &sg, 1, 0, 1, 512,
0
);
if (ret)
return ret;