diff options
author | Leon Romanovsky <leonro@mellanox.com> | 2018-03-11 13:51:34 +0200 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2018-03-14 15:34:25 -0400 |
commit | fbf1795c969ae81a0c292ca0ee0baa944da4ede3 (patch) | |
tree | d6778a83b79fc78486fb85b558ad3ecad67f54c2 /drivers/infiniband/hw/vmw_pvrdma | |
parent | 88de869bbe4fb669ae92f19225a90b07d8173ccb (diff) | |
download | linux-fbf1795c969ae81a0c292ca0ee0baa944da4ede3.tar.gz linux-fbf1795c969ae81a0c292ca0ee0baa944da4ede3.tar.bz2 linux-fbf1795c969ae81a0c292ca0ee0baa944da4ede3.zip |
RDMA/pvrdma: Properly annotate QP states
QP states provided by core layer are converted to enum ib_qp_state
and better to use internal variable in that type instead of int.
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/hw/vmw_pvrdma')
-rw-r--r-- | drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.c b/drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.c index 7bf518bdbf21..eb5b1065ec08 100644 --- a/drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.c +++ b/drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.c @@ -489,7 +489,7 @@ int pvrdma_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr, union pvrdma_cmd_req req; union pvrdma_cmd_resp rsp; struct pvrdma_cmd_modify_qp *cmd = &req.modify_qp; - int cur_state, next_state; + enum ib_qp_state cur_state, next_state; int ret; /* Sanity checking. Should need lock here */ |