From: Juan Quintela Date: Wed, 2 Dec 2009 11:36:41 +0000 (+0100) Subject: vmstate: Introduce UINT16_TEST support X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2fee40782cb6462137f49023b8e55e22c4571790;p=qemu.git vmstate: Introduce UINT16_TEST support Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- diff --git a/hw/hw.h b/hw/hw.h index 0a5acd4ce0..5994d86099 100644 --- a/hw/hw.h +++ b/hw/hw.h @@ -633,6 +633,9 @@ extern const VMStateDescription vmstate_i2c_slave; #define VMSTATE_INT32_LE(_f, _s) \ VMSTATE_SINGLE(_f, _s, 0, vmstate_info_int32_le, int32_t) +#define VMSTATE_UINT16_TEST(_f, _s, _t) \ + VMSTATE_SINGLE_TEST(_f, _s, _t, 0, vmstate_info_uint16, uint16_t) + #define VMSTATE_UINT32_TEST(_f, _s, _t) \ VMSTATE_SINGLE_TEST(_f, _s, _t, 0, vmstate_info_uint32, uint32_t)