diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-02-01 15:21:23 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-02-01 15:21:23 -0600 |
commit | cfb41c82ab9c468e599d3603ffcebeb81b6577ca (patch) | |
tree | c29d87265f8330b05142e25b91d6c44cd161c70e /hw/usb.h | |
parent | e54b7f5256659dddaf6b5c021847859829d7ebd7 (diff) | |
parent | ea87e95f8fda609fa665c2abd33c30ae65e6fae2 (diff) |
Merge remote branch 'spice/usb.5' into staging
Diffstat (limited to 'hw/usb.h')
-rw-r--r-- | hw/usb.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -165,13 +165,13 @@ struct USBDevice { int auto_attach; int attached; - int state; + int32_t state; uint8_t setup_buf[8]; uint8_t data_buf[1024]; - int remote_wakeup; - int setup_state; - int setup_len; - int setup_index; + int32_t remote_wakeup; + int32_t setup_state; + int32_t setup_len; + int32_t setup_index; QLIST_HEAD(, USBDescString) strings; const USBDescDevice *device; |