diff options
author | Hervé Poussineau <hpoussin@reactos.org> | 2015-06-03 22:45:47 +0200 |
---|---|---|
committer | Leon Alrae <leon.alrae@imgtec.com> | 2015-06-11 10:13:30 +0100 |
commit | 1670735dd7087224cf8fabd37c78fc2aa1f0b22f (patch) | |
tree | 8354be24497489dd8a8963ed575fa3aece3c06c2 | |
parent | 89ae0ff9b73ee74c9ba707a09a07ad77b9fdccb4 (diff) |
net/dp8393x: add load/save support
Signed-off-by: Hervé Poussineau <hpoussin@reactos.org>
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
-rw-r--r-- | hw/net/dp8393x.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/hw/net/dp8393x.c b/hw/net/dp8393x.c index ef1fb0e69c..4184045145 100644 --- a/hw/net/dp8393x.c +++ b/hw/net/dp8393x.c @@ -853,6 +853,17 @@ static void dp8393x_realize(DeviceState *dev, Error **errp) prom[7] = 0xff - checksum; } +static const VMStateDescription vmstate_dp8393x = { + .name = "dp8393x", + .version_id = 0, + .minimum_version_id = 0, + .fields = (VMStateField []) { + VMSTATE_BUFFER_UNSAFE(cam, dp8393xState, 0, 16 * 6), + VMSTATE_UINT16_ARRAY(regs, dp8393xState, 0x40), + VMSTATE_END_OF_LIST() + } +}; + static Property dp8393x_properties[] = { DEFINE_NIC_PROPERTIES(dp8393xState, conf), DEFINE_PROP_PTR("dma_mr", dp8393xState, dma_mr), @@ -867,6 +878,7 @@ static void dp8393x_class_init(ObjectClass *klass, void *data) set_bit(DEVICE_CATEGORY_NETWORK, dc->categories); dc->realize = dp8393x_realize; dc->reset = dp8393x_reset; + dc->vmsd = &vmstate_dp8393x; dc->props = dp8393x_properties; } |