diff options
author | Michael S. Tsirkin | 2018-03-21 16:22:07 +0100 |
---|---|---|
committer | Marcel Apfelbaum | 2018-03-23 16:38:55 +0100 |
commit | 0efc9511aaa1bacb9dd9868a5f463180af5aa782 (patch) | |
tree | 03a8777bb35dce6f6672253ce67247d170b9249b /hw/rdma/rdma_rm.c | |
parent | hw/rdma: Add support for Query QP verb to pvrdma device (diff) | |
download | qemu-0efc9511aaa1bacb9dd9868a5f463180af5aa782.tar.gz qemu-0efc9511aaa1bacb9dd9868a5f463180af5aa782.tar.xz qemu-0efc9511aaa1bacb9dd9868a5f463180af5aa782.zip |
rdma: fix up include directives
Our rule right now is to use <> for external headers only.
RDMA code violates that, fix it up.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
Signed-off-by: Marcel Apfelbaum <marcel@redhat.com>
Diffstat (limited to 'hw/rdma/rdma_rm.c')
-rw-r--r-- | hw/rdma/rdma_rm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/rdma/rdma_rm.c b/hw/rdma/rdma_rm.c index 43f73adecf..6d88ac5d23 100644 --- a/hw/rdma/rdma_rm.c +++ b/hw/rdma/rdma_rm.c @@ -13,9 +13,9 @@ * */ -#include <qemu/osdep.h> -#include <qapi/error.h> -#include <cpu.h> +#include "qemu/osdep.h" +#include "qapi/error.h" +#include "cpu.h" #include "rdma_utils.h" #include "rdma_backend.h" |