mmc: sh_mmcif: reset error code for any opcode

If a command execution has produced an error, it has to be reset as a part
of the error handling.

Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Chris Ball <cjb@laptop.org>
This commit is contained in:
Guennadi Liakhovetski 2012-12-12 15:38:15 +01:00 committed by Chris Ball
parent 8047310ee9
commit aba9d64678

View File

@ -1041,7 +1041,6 @@ static bool sh_mmcif_end_cmd(struct sh_mmcif_host *host)
case MMC_SELECT_CARD: case MMC_SELECT_CARD:
case MMC_APP_CMD: case MMC_APP_CMD:
cmd->error = -ETIMEDOUT; cmd->error = -ETIMEDOUT;
host->sd_error = false;
break; break;
default: default:
cmd->error = sh_mmcif_error_manage(host); cmd->error = sh_mmcif_error_manage(host);
@ -1049,6 +1048,7 @@ static bool sh_mmcif_end_cmd(struct sh_mmcif_host *host)
cmd->opcode, cmd->error); cmd->opcode, cmd->error);
break; break;
} }
host->sd_error = false;
return false; return false;
} }
if (!(cmd->flags & MMC_RSP_PRESENT)) { if (!(cmd->flags & MMC_RSP_PRESENT)) {