diff options
author | Juan Quintela <quintela@redhat.com> | 2009-12-02 12:36:42 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-03 10:04:54 -0600 |
commit | bfb811ade56e62da44404f55e224f4f5d07a902c (patch) | |
tree | 9cce6322a083cb10296ea36ad0d35f87ee0d7139 | |
parent | 2fee40782cb6462137f49023b8e55e22c4571790 (diff) | |
download | hqemu-bfb811ade56e62da44404f55e224f4f5d07a902c.zip hqemu-bfb811ade56e62da44404f55e224f4f5d07a902c.tar.gz |
vmstate: remove usused VMSTATE_STRUCT_ARRAY_SIZE_UINT8
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r-- | hw/hw.h | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -475,16 +475,6 @@ extern const VMStateInfo vmstate_info_unused_buffer; .offset = vmstate_offset_array(_state, _field, _type, _num), \ } -#define VMSTATE_STRUCT_ARRAY_SIZE_UINT8(_field, _state, _field__num, _version, _vmsd, _type) { \ - .name = (stringify(_field)), \ - .num_offset = vmstate_offset_value(_state, _field_num, uint8_t), \ - .version_id = (_version), \ - .vmsd = &(_vmsd), \ - .size = sizeof(_type), \ - .flags = VMS_STRUCT|VMS_ARRAY, \ - .offset = vmstate_offset_array(_state, _field, _type, _num), \ -} - #define VMSTATE_STATIC_BUFFER(_field, _state, _version, _test, _start, _size) { \ .name = (stringify(_field)), \ .version_id = (_version), \ |