hw/sd/sdcard: Update the SDState documentation
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Wed, 9 May 2018 05:19:41 +0000 (02:19 -0300)
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>
Sun, 25 Oct 2020 23:36:52 +0000 (00:36 +0100)
Add more descriptive comments to keep a clear separation
between static property vs runtime changeable.

Suggested-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-Id: <20200630133912.9428-12-f4bug@amsat.org>

hw/sd/sd.c

index c3febed243468640c9fe828f3db8e616e6fed861..9b53053527ed8dc9f467fdf6042ba6886daf312b 100644 (file)
@@ -102,11 +102,14 @@ struct SDState {
     uint32_t card_status;
     uint8_t sd_status[64];
 
-    /* Configurable properties */
+    /* Static properties */
+
     uint8_t spec_version;
     BlockBackend *blk;
     bool spi;
 
+    /* Runtime changeables */
+
     uint32_t mode;    /* current card mode, one of SDCardModes */
     int32_t state;    /* current card state, one of SDCardStates */
     uint32_t vhs;