diff options
| author | Soren Brinkmann | 2015-08-14 08:16:27 +0200 |
|---|---|---|
| committer | Amit Shah | 2015-09-29 08:02:45 +0200 |
| commit | eb5c936e81e2e292ceefec9b6628862599f71c17 (patch) | |
| tree | 762843577167cc46b6038e84dc23468d1e66cb1f | |
| parent | Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging (diff) | |
| download | qemu-eb5c936e81e2e292ceefec9b6628862599f71c17.tar.gz qemu-eb5c936e81e2e292ceefec9b6628862599f71c17.tar.xz qemu-eb5c936e81e2e292ceefec9b6628862599f71c17.zip | |
vmstate: Remove redefinition of VMSTATE_UINT32_ARRAY
The macro is defined twice in identical ways.
Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com>
Message-Id: <1439532987-16335-1-git-send-email-soren.brinkmann@xilinx.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
| -rw-r--r-- | include/migration/vmstate.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/migration/vmstate.h b/include/migration/vmstate.h index 2e5a97dec4..9a65522da1 100644 --- a/include/migration/vmstate.h +++ b/include/migration/vmstate.h @@ -754,9 +754,6 @@ extern const VMStateInfo vmstate_info_bitmap; #define VMSTATE_UINT32_SUB_ARRAY(_f, _s, _start, _num) \ VMSTATE_SUB_ARRAY(_f, _s, _start, _num, 0, vmstate_info_uint32, uint32_t) -#define VMSTATE_UINT32_ARRAY(_f, _s, _n) \ - VMSTATE_UINT32_ARRAY_V(_f, _s, _n, 0) - #define VMSTATE_INT64_ARRAY_V(_f, _s, _n, _v) \ VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_int64, int64_t) |
