Message ID | 80c196ba80192152763c3d58ae7c2a660e3e9b62.1252662256.git.quintela@redhat.com |
---|---|
State | Superseded |
Headers | show |
diff --git a/hw/hw.h b/hw/hw.h index c63f65c..ac9d21d 100644 --- a/hw/hw.h +++ b/hw/hw.h @@ -498,6 +498,12 @@ extern const VMStateDescription vmstate_pci_device; #define VMSTATE_UINT16_ARRAY(_f, _s, _n) \ VMSTATE_UINT16_ARRAY_V(_f, _s, _n, 0) +#define VMSTATE_UINT8_ARRAY_V(_f, _s, _n, _v) \ + VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_uint8, uint8_t) + +#define VMSTATE_UINT8_ARRAY(_f, _s, _n) \ + VMSTATE_UINT8_ARRAY_V(_f, _s, _n, 0) + #define VMSTATE_UINT32_ARRAY_V(_f, _s, _n, _v) \ VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_uint32, uint32_t)
Signed-off-by: Juan Quintela <quintela@redhat.com> --- hw/hw.h | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-)