hw/elf_ops: Fix a typo
[qemu/ar7.git] / hw / core / vmstate-if.c
blobbf453620fed43e7708d358dbc1e85d25300f5435
1 /*
2 * VMState interface
4 * Copyright (c) 2009-2019 Red Hat Inc
5 * This work is licensed under the terms of the GNU GPL, version 2 or later.
6 * See the COPYING file in the top-level directory.
7 */
9 #include "qemu/osdep.h"
10 #include "hw/vmstate-if.h"
12 static const TypeInfo vmstate_if_info = {
13 .name = TYPE_VMSTATE_IF,
14 .parent = TYPE_INTERFACE,
15 .class_size = sizeof(VMStateIfClass),
18 static void vmstate_register_types(void)
20 type_register_static(&vmstate_if_info);
23 type_init(vmstate_register_types);