From 94522ff7f6d274265105935ed3904805579f9c81 Mon Sep 17 00:00:00 2001 From: Bryan O'Donoghue Date: Wed, 15 Aug 2018 15:59:07 +0100 Subject: [PATCH] drivers: mmc: Fix R3 response type definition The R3 response type definition should be (1 << 0). Make sure we define the expected response code in the appropriate fashion. Signed-off-by: Bryan O'Donoghue --- drivers/mmc/mmc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c index bf87612d..6a57a934 100644 --- a/drivers/mmc/mmc.c +++ b/drivers/mmc/mmc.c @@ -333,7 +333,7 @@ static int sd_send_op_cond(void) } /* ACMD41: SD_SEND_OP_COND */ - ret = mmc_send_cmd(MMC_ACMD(41), OCR_HCS, MMC_RESPONSE_R(3), + ret = mmc_send_cmd(MMC_ACMD(41), OCR_HCS, MMC_RESPONSE_R3, &resp_data[0]); if (ret != 0) { return ret; @@ -384,7 +384,7 @@ static int mmc_send_op_cond(void) for (n = 0; n < SEND_OP_COND_MAX_RETRIES; n++) { ret = mmc_send_cmd(MMC_CMD(1), OCR_SECTOR_MODE | OCR_VDD_MIN_2V7 | OCR_VDD_MIN_1V7, - MMC_RESPONSE_R(3), &resp_data[0]); + MMC_RESPONSE_R3, &resp_data[0]); if (ret != 0) { return ret; } -- 2.30.2