summary refs log tree commit diff stats
path: root/hw/container.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/container.c')
-rw-r--r--hw/container.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/hw/container.c b/hw/container.c
deleted file mode 100644
index 73f94c5fd6..0000000000
--- a/hw/container.c
+++ /dev/null
@@ -1,27 +0,0 @@
-#include "sysbus.h"
-
-static int container_initfn(SysBusDevice *dev)
-{
-    return 0;
-}
-
-static void container_class_init(ObjectClass *klass, void *data)
-{
-    SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
-
-    k->init = container_initfn;
-}
-
-static DeviceInfo container_info = {
-    .name = "container",
-    .size = sizeof(SysBusDevice),
-    .no_user = 1,
-    .class_init = container_class_init,
-};
-
-static void container_init(void)
-{
-    sysbus_register_withprop(&container_info);
-}
-
-device_init(container_init);