| Submitter | Juan Quintela |
|---|---|
| Date | Sept. 10, 2009, 1:04 a.m. |
| Message ID | <ed2edf7bdb7beec13ce79ac6272f678f99c12749.1252543872.git.quintela@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/33252/ |
| State | Superseded |
| Headers | show |
Comments
Patch
diff --git a/hw/hw.h b/hw/hw.h index 4ff7dbd..b023ced 100644 --- a/hw/hw.h +++ b/hw/hw.h @@ -483,6 +483,12 @@ extern const VMStateDescription vmstate_pci_device; #define VMSTATE_PTIMER(_f, _s) \ VMSTATE_PTIMER_V(_f, _s, 0) +#define VMSTATE_UINT16_ARRAY_V(_f, _s, _n, _v) \ + VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_uint16, uint16_t) + +#define VMSTATE_UINT16_ARRAY(_f, _s, _n) \ + VMSTATE_UINT16_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(-)