diff options
author | Tom Rini <trini@konsulko.com> | 2019-07-15 09:42:41 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-07-15 09:42:41 -0400 |
commit | 6674dc77c2f735ec9bc02434626125698d2755ff (patch) | |
tree | 991a151b7eb3a04f6b624f6709a2eaf503e8b369 /drivers/mmc/rpmb.c | |
parent | a9a3a37f92b072a56693ad665ab4c5cc73028d16 (diff) | |
parent | 356f782c6ef9ec971d18662b82ddab25b0dc4fed (diff) |
Merge tag 'mmc-2019-7-15' of https://gitlab.denx.de/u-boot/custodians/u-boot-mmc
- mmc spi driver model support
- drop mmc_spi command
- enhanced Strobe mmc HS400 support
- minor mmc bug/fixes and optimization
- omap hsmmc and mvbeu update
- sdhci card detect support
Diffstat (limited to 'drivers/mmc/rpmb.c')
-rw-r--r-- | drivers/mmc/rpmb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/rpmb.c b/drivers/mmc/rpmb.c index 908f192089..33371fe562 100644 --- a/drivers/mmc/rpmb.c +++ b/drivers/mmc/rpmb.c @@ -103,7 +103,7 @@ static int mmc_rpmb_request(struct mmc *mmc, const struct s_rpmb *s, cmd.cmdidx = MMC_CMD_WRITE_MULTIPLE_BLOCK; cmd.cmdarg = 0; - cmd.resp_type = MMC_RSP_R1b; + cmd.resp_type = MMC_RSP_R1; data.src = (const char *)s; data.blocks = 1; @@ -327,7 +327,7 @@ static int send_write_mult_block(struct mmc *mmc, const struct s_rpmb *frm, { struct mmc_cmd cmd = { .cmdidx = MMC_CMD_WRITE_MULTIPLE_BLOCK, - .resp_type = MMC_RSP_R1b, + .resp_type = MMC_RSP_R1, }; struct mmc_data data = { .src = (const void *)frm, |