summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--hw/sd/sd.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/hw/sd/sd.c b/hw/sd/sd.c
index c3febed243..9b53053527 100644
--- a/hw/sd/sd.c
+++ b/hw/sd/sd.c
@@ -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;