diff options
| author | Anthony Liguori <aliguori@us.ibm.com> | 2011-06-22 07:07:55 -0500 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-06-22 07:07:55 -0500 |
| commit | 7ee28fd303003d70bb4c142e6ad4b92b7383b5b4 (patch) | |
| tree | 03781532cc1e7b53d5ce4ffd3a49d515dcdf21c3 /hw/hw.h | |
| parent | bcd2491a48787542160d75fb7468907971b04478 (diff) | |
| parent | 01195b7347e341a49fa554959882b26c666a3616 (diff) | |
| download | focaccia-qemu-7ee28fd303003d70bb4c142e6ad4b92b7383b5b4.tar.gz focaccia-qemu-7ee28fd303003d70bb4c142e6ad4b92b7383b5b4.zip | |
Merge remote-tracking branch 'agraf/xen-next' into staging
Diffstat (limited to 'hw/hw.h')
| -rw-r--r-- | hw/hw.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/hw.h b/hw/hw.h index 56447a735d..9dd7096fc2 100644 --- a/hw/hw.h +++ b/hw/hw.h @@ -780,6 +780,9 @@ extern const VMStateDescription vmstate_ptimer; #define VMSTATE_INT32_LE(_f, _s) \ VMSTATE_SINGLE(_f, _s, 0, vmstate_info_int32_le, int32_t) +#define VMSTATE_UINT8_TEST(_f, _s, _t) \ + VMSTATE_SINGLE_TEST(_f, _s, _t, 0, vmstate_info_uint8, uint8_t) + #define VMSTATE_UINT16_TEST(_f, _s, _t) \ VMSTATE_SINGLE_TEST(_f, _s, _t, 0, vmstate_info_uint16, uint16_t) |