]> git.proxmox.com Git - qemu.git/blobdiff - hw/tc58128.c
Revert "Get rid of _t suffix"
[qemu.git] / hw / tc58128.c
index 92adca46b08ce8bc5f1a31dd65e5243c887fb9df..264aa028da8c084fac73d47f7cb35c0defc8ea0b 100644 (file)
 #define RDY2 0x8000
 #define RDY(n) ((n) == 0 ? RDY1 : RDY2)
 
-typedef enum { WAIT, READ1, READ2, READ3 } e_state;
+typedef enum { WAIT, READ1, READ2, READ3 } state_t;
 
 typedef struct {
     uint8_t *flash_contents;
-    e_state state;
+    state_t state;
     uint32_t address;
     uint8_t address_cycle;
 } tc58128_dev;