mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 22:41:07 +00:00
8b45d447ce
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> --- v1 -> v2 - Add license (Paolo)
27 lines
551 B
C
27 lines
551 B
C
/*
|
|
* Device Container
|
|
*
|
|
* Copyright IBM, Corp. 2012
|
|
*
|
|
* Authors:
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#include "qemu/object.h"
|
|
#include "module.h"
|
|
|
|
static TypeInfo container_info = {
|
|
.name = "container",
|
|
.instance_size = sizeof(Object),
|
|
.parent = TYPE_OBJECT,
|
|
};
|
|
|
|
static void container_init(void)
|
|
{
|
|
type_register_static(&container_info);
|
|
}
|
|
|
|
device_init(container_init);
|