diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-06-17 16:58:29 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-06-24 10:41:42 +0200 |
commit | d00e614f61e1a90ee905e783d3363752e63df8c0 (patch) | |
tree | 76a1858618ef04cd26af0549bb9ff21f445e5384 | |
parent | 8d380565adf45fa456832d7e2cbbf7be359ebbd8 (diff) | |
download | qemu-d00e614f61e1a90ee905e783d3363752e63df8c0.zip qemu-d00e614f61e1a90ee905e783d3363752e63df8c0.tar.gz qemu-d00e614f61e1a90ee905e783d3363752e63df8c0.tar.bz2 |
hw/sd/sdcard: Rewrite sd_cmd_ALL_SEND_CID using switch case (CMD2)
Keep this handler style in sync with other handlers by
using a switch() case, which might become handy to
handle other states.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Tested-by: Cédric Le Goater <clg@redhat.com>
Message-Id: <20240621080554.18986-3-philmd@linaro.org>
-rw-r--r-- | hw/sd/sd.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1044,13 +1044,13 @@ static sd_rsp_type_t sd_cmd_SEND_OP_CMD(SDState *sd, SDRequest req) static sd_rsp_type_t sd_cmd_ALL_SEND_CID(SDState *sd, SDRequest req) { - if (sd->state != sd_ready_state) { + switch (sd->state) { + case sd_ready_state: + sd->state = sd_identification_state; + return sd_r2_i; + default: return sd_invalid_state_for_cmd(sd, req); } - - sd->state = sd_identification_state; - - return sd_r2_i; } static sd_rsp_type_t sd_cmd_SEND_RELATIVE_ADDR(SDState *sd, SDRequest req) |