diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-09-13 13:18:19 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-10-21 13:19:02 +0200 |
commit | aafe6c583696fa40677bcd2285da5e7a5210b3eb (patch) | |
tree | 3b440baf4959fab0a935df58773dbfad7e7c5878 /hw/sd/sd.c | |
parent | 9321c1f2d08817fdb90ad129fbe3194207e73ba0 (diff) | |
download | qemu-aafe6c583696fa40677bcd2285da5e7a5210b3eb.zip qemu-aafe6c583696fa40677bcd2285da5e7a5210b3eb.tar.gz qemu-aafe6c583696fa40677bcd2285da5e7a5210b3eb.tar.bz2 |
hw/sd/sdcard: Add trace event for ERASE command (CMD38)
Trace addresses provided to the ERASE command.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Tested-by: Alexander Bulekov <alxndr@bu.edu>
Message-Id: <20201015063824.212980-2-f4bug@amsat.org>
Diffstat (limited to 'hw/sd/sd.c')
-rw-r--r-- | hw/sd/sd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -749,7 +749,7 @@ static void sd_erase(SDState *sd) uint64_t erase_start = sd->erase_start; uint64_t erase_end = sd->erase_end; - trace_sdcard_erase(); + trace_sdcard_erase(sd->erase_start, sd->erase_end); if (!sd->erase_start || !sd->erase_end) { sd->card_status |= ERASE_SEQ_ERROR; return; |