Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20210330' into...
[qemu/ar7.git] / hw / rdma / rdma.c
blob7bec0d0d2c7e0b388dcd7684d39d329e5b8e8cb3
1 /*
2 * RDMA device interface
4 * Copyright (C) 2018 Oracle
5 * Copyright (C) 2018 Red Hat Inc
7 * Authors:
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)