diff options
author | Leon Romanovsky <leon@kernel.org> | 2016-09-22 17:31:15 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2016-10-07 16:54:36 -0400 |
commit | a7fe7380f6b234f207a599c9ffbaae6c1a574634 (patch) | |
tree | dd620b40e817e77ee46423bc6867ce278887ae8c /drivers/infiniband/hw/ocrdma/ocrdma_verbs.c | |
parent | 9ce28a20eec551cfc032c87cd31a05c14d11155d (diff) | |
download | linux-stable-a7fe7380f6b234f207a599c9ffbaae6c1a574634.tar.gz linux-stable-a7fe7380f6b234f207a599c9ffbaae6c1a574634.tar.bz2 linux-stable-a7fe7380f6b234f207a599c9ffbaae6c1a574634.zip |
IB/ocrdma: Move user vendor structures
This patch moves ocrdma vendor's specific structures to
common UAPI folder which will be visible to all consumers.
These structures are used by user-space library driver
(libmlx4) and currently manually copied to that library.
This move will allow cross-compile against these files and
simplify introduction of vendor specific data.
In addition, it changes types to be __uXX instead of uXX.
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Acked-By: Devesh Sharma <devesh.sharma@broadcom.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/hw/ocrdma/ocrdma_verbs.c')
-rw-r--r-- | drivers/infiniband/hw/ocrdma/ocrdma_verbs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/ocrdma/ocrdma_verbs.c b/drivers/infiniband/hw/ocrdma/ocrdma_verbs.c index b1a3d91fe8b9..71d0534960d6 100644 --- a/drivers/infiniband/hw/ocrdma/ocrdma_verbs.c +++ b/drivers/infiniband/hw/ocrdma/ocrdma_verbs.c @@ -51,7 +51,7 @@ #include "ocrdma.h" #include "ocrdma_hw.h" #include "ocrdma_verbs.h" -#include "ocrdma_abi.h" +#include <rdma/ocrdma-abi.h> int ocrdma_query_pkey(struct ib_device *ibdev, u8 port, u16 index, u16 *pkey) { |