diff options
author | Corey Minyard | 2018-11-26 19:54:45 +0100 |
---|---|---|
committer | Corey Minyard | 2019-02-28 04:06:08 +0100 |
commit | 8e995f34031d66666b45b779458cb370e86cfe2d (patch) | |
tree | 57ca6e81bd9418e2117982dcce7af3bdff548938 /include | |
parent | i2c:pm_smbus: Fix pm_smbus handling of I2C block read (diff) | |
download | qemu-8e995f34031d66666b45b779458cb370e86cfe2d.tar.gz qemu-8e995f34031d66666b45b779458cb370e86cfe2d.tar.xz qemu-8e995f34031d66666b45b779458cb370e86cfe2d.zip |
migration: Add a VMSTATE_BOOL_TEST() macro
This will be needed by coming I2C changes.
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/migration/vmstate.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/migration/vmstate.h b/include/migration/vmstate.h index 067b126cf1..a668ec75b8 100644 --- a/include/migration/vmstate.h +++ b/include/migration/vmstate.h @@ -851,6 +851,9 @@ extern const VMStateInfo vmstate_info_qtailq; #define VMSTATE_INT32_POSITIVE_LE(_f, _s) \ VMSTATE_SINGLE(_f, _s, 0, vmstate_info_int32_le, int32_t) +#define VMSTATE_BOOL_TEST(_f, _s, _t) \ + VMSTATE_SINGLE_TEST(_f, _s, _t, 0, vmstate_info_bool, bool) + #define VMSTATE_INT8_TEST(_f, _s, _t) \ VMSTATE_SINGLE_TEST(_f, _s, _t, 0, vmstate_info_int8, int8_t) |