diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2018-03-21 17:22:07 +0200 |
---|---|---|
committer | Marcel Apfelbaum <marcel@redhat.com> | 2018-03-23 18:38:55 +0300 |
commit | 0efc9511aaa1bacb9dd9868a5f463180af5aa782 (patch) | |
tree | 03a8777bb35dce6f6672253ce67247d170b9249b /hw/rdma/rdma_utils.h | |
parent | 79cfdca7aa0f0017723755b58d1bd4c93ccdf55c (diff) |
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_utils.h')
-rw-r--r-- | hw/rdma/rdma_utils.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/rdma/rdma_utils.h b/hw/rdma/rdma_utils.h index cdac910e24..3dc07891bc 100644 --- a/hw/rdma/rdma_utils.h +++ b/hw/rdma/rdma_utils.h @@ -17,9 +17,9 @@ #ifndef RDMA_UTILS_H #define RDMA_UTILS_H -#include <qemu/osdep.h> -#include <include/hw/pci/pci.h> -#include <include/sysemu/dma.h> +#include "qemu/osdep.h" +#include "hw/pci/pci.h" +#include "sysemu/dma.h" #define pr_info(fmt, ...) \ fprintf(stdout, "%s: %-20s (%3d): " fmt, "pvrdma", __func__, __LINE__,\ |