From 701a8f76aa5243d90a71935982c20c06d8e83b80 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Fri, 13 Jan 2012 17:07:20 +0100 Subject: vmstate: extract declarations out of hw/hw.h Signed-off-by: Paolo Bonzini Signed-off-by: Anthony Liguori --- hw/i2c.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'hw/i2c.h') diff --git a/hw/i2c.h b/hw/i2c.h index 9381d01589..a3383ff025 100644 --- a/hw/i2c.h +++ b/hw/i2c.h @@ -74,4 +74,14 @@ void tmp105_set(i2c_slave *i2c, int temp); /* lm832x.c */ void lm832x_key_event(DeviceState *dev, int key, int state); +extern const VMStateDescription vmstate_i2c_slave; + +#define VMSTATE_I2C_SLAVE(_field, _state) { \ + .name = (stringify(_field)), \ + .size = sizeof(i2c_slave), \ + .vmsd = &vmstate_i2c_slave, \ + .flags = VMS_STRUCT, \ + .offset = vmstate_offset_value(_state, _field, i2c_slave), \ +} + #endif -- cgit v1.2.3