aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorPierre Ossman <drzeus@drzeus.cx>2005-11-28 21:00:29 +0000
committerRussell King <rmk+kernel@arm.linux.org.uk>2005-11-28 21:00:29 +0000
commit24117defabc849a6ad5081ad0fafd0664bf55f13 (patch)
tree988c42a389c3309cb940e62d75fa495c21ebab74 /drivers/mmc
parent[PATCH] drivers/scsi/dpt_i2o.c: fix a NULL pointer dereference (diff)
downloadlinux-dev-24117defabc849a6ad5081ad0fafd0664bf55f13.tar.xz
linux-dev-24117defabc849a6ad5081ad0fafd0664bf55f13.zip
[MMC] Fix protocol errors
A review against MMC/SD specifications found some errors in the current implementation. Signed-off-by: Pierre Ossman <drzeus@drzeus.cx> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/mmc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
index da528390acf8..d336a1d65dc7 100644
--- a/drivers/mmc/mmc.c
+++ b/drivers/mmc/mmc.c
@@ -816,7 +816,7 @@ static void mmc_discover_cards(struct mmc_host *host)
cmd.opcode = SD_SEND_RELATIVE_ADDR;
cmd.arg = 0;
- cmd.flags = MMC_RSP_R1;
+ cmd.flags = MMC_RSP_R6;
err = mmc_wait_for_cmd(host, &cmd, CMD_RETRIES);
if (err != MMC_ERR_NONE)