diff options
| author | Juan Quintela <quintela@redhat.com> | 2009-09-29 22:48:30 +0200 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-05 09:32:38 -0500 |
| commit | 1894839f86f58c497f48fe8f5d1e6ce1df3b5894 (patch) | |
| tree | 113173320cbfe1bc07ca0d1425a3333b02570f2d /hw/i2c.c | |
| parent | b6bd0bdc552d09c123eb5b443ca7e6d0329ff096 (diff) | |
| download | focaccia-qemu-1894839f86f58c497f48fe8f5d1e6ce1df3b5894.tar.gz focaccia-qemu-1894839f86f58c497f48fe8f5d1e6ce1df3b5894.zip | |
vmstate: create VMSTATE_I2C_SLAVE
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/i2c.c')
| -rw-r--r-- | hw/i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/i2c.c b/hw/i2c.c index db9283d0ad..e561e7f973 100644 --- a/hw/i2c.c +++ b/hw/i2c.c @@ -153,7 +153,7 @@ static int i2c_slave_post_load(void *opaque, int version_id) return 0; } -static const VMStateDescription vmstate_i2c_slave = { +const VMStateDescription vmstate_i2c_slave = { .name = "i2c_slave", .version_id = 1, .minimum_version_id = 1, |