2 * RDMA device interface
4 * Copyright (C) 2018 Oracle
5 * Copyright (C) 2018 Red Hat Inc
8 * Yuval Shaia <yuval.shaia@oracle.com>
10 * This work is licensed under the terms of the GNU GPL, version 2 or later.
11 * See the COPYING file in the top-level directory.
15 #include "qemu/osdep.h"
16 #include "hw/rdma/rdma.h"
17 #include "qemu/module.h"
19 static const TypeInfo rdma_hmp_info
= {
20 .name
= INTERFACE_RDMA_PROVIDER
,
21 .parent
= TYPE_INTERFACE
,
22 .class_size
= sizeof(RdmaProviderClass
),
25 static void rdma_register_types(void)
27 type_register_static(&rdma_hmp_info
);
30 type_init(rdma_register_types
)