diff options
author | Pragnesh Patel <pragnesh.patel@sifive.com> | 2020-06-29 15:17:25 +0530 |
---|---|---|
committer | Peng Fan <peng.fan@nxp.com> | 2020-07-14 16:19:42 +0800 |
commit | a236d834fa431191b80e15088995ee4d06685674 (patch) | |
tree | 6a646df89dff4df9545f4b3e0b91dc1fe6b32b0b /drivers/mmc/mmc_spi.c | |
parent | 3ba1d53c420c321a72312902b735680491988bad (diff) | |
download | u-boot-a236d834fa431191b80e15088995ee4d06685674.tar.gz |
mmc: mmc_spi: generate R1 response for different mmc SPI commands
R1 response is 1 byte long for mmc SPI commands as per the updated
physical layer specification version 7.10.
So correct the resp and resp_size for existing commands
Signed-off-by: Pragnesh Patel <pragnesh.patel@sifive.com>
Reviewed-by: Bin Meng <bin.meng@windriver.com>
Tested-by: Bin Meng <bin.meng@windriver.com>
Diffstat (limited to 'drivers/mmc/mmc_spi.c')
-rw-r--r-- | drivers/mmc/mmc_spi.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mmc/mmc_spi.c b/drivers/mmc/mmc_spi.c index 86cc932151..ddfebb6ed6 100644 --- a/drivers/mmc/mmc_spi.c +++ b/drivers/mmc/mmc_spi.c @@ -305,6 +305,8 @@ static int dm_mmc_spi_request(struct udevice *dev, struct mmc_cmd *cmd, case MMC_CMD_READ_MULTIPLE_BLOCK: case MMC_CMD_WRITE_SINGLE_BLOCK: case MMC_CMD_WRITE_MULTIPLE_BLOCK: + resp = &resp8; + resp_size = sizeof(resp8); break; default: resp = &resp8; |