mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
hw/sd.c: Set ILLEGAL_COMMAND for ACMDs in invalid state
App commands in an invalid state should set ILLEGAL_COMMAND, not merely return a zero response. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Andrzej Zaborowski <andrew.zaborowski@intel.com>
This commit is contained in:
parent
b1f517ed43
commit
5b08bfe2e9
1 changed files with 1 additions and 1 deletions
2
hw/sd.c
2
hw/sd.c
|
@ -1262,7 +1262,7 @@ static sd_rsp_type_t sd_app_command(SDState *sd,
|
|||
}
|
||||
|
||||
fprintf(stderr, "SD: ACMD%i in a wrong state\n", req.cmd);
|
||||
return sd_r0;
|
||||
return sd_illegal;
|
||||
}
|
||||
|
||||
static int cmd_valid_while_locked(SDState *sd, SDRequest *req)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue