projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0ca4c39
)
IB/ocrdma: Skip using unneeded intermediate variable
author
Markus Elfring
<
[email protected]
>
Sat, 26 Dec 2015 17:28:35 +0000
(18:28 +0100)
committer
Doug Ledford
<
[email protected]
>
Thu, 3 Mar 2016 18:33:10 +0000
(13:33 -0500)
Return zero at the end without using the local variable "status".
Signed-off-by: Markus Elfring <
[email protected]
>
Signed-off-by: Doug Ledford <
[email protected]
>
drivers/infiniband/hw/ocrdma/ocrdma_hw.c
patch
|
blob
|
history
diff --git
a/drivers/infiniband/hw/ocrdma/ocrdma_hw.c
b/drivers/infiniband/hw/ocrdma/ocrdma_hw.c
index 9b8ff26ada9e8a1990d1ec095eb754a10149c60e..16740dcb876bd4f93e2c4954d61aa51ba8579343 100644
(file)
--- a/
drivers/infiniband/hw/ocrdma/ocrdma_hw.c
+++ b/
drivers/infiniband/hw/ocrdma/ocrdma_hw.c
@@
-2141,7
+2141,6
@@
int ocrdma_qp_state_change(struct ocrdma_qp *qp, enum ib_qp_state new_ib_state,
enum ib_qp_state *old_ib_state)
{
unsigned long flags;
- int status = 0;
enum ocrdma_qp_state new_state;
new_state = get_ocrdma_qp_state(new_ib_state);
@@
-2166,7
+2165,7
@@
int ocrdma_qp_state_change(struct ocrdma_qp *qp, enum ib_qp_state new_ib_state,
qp->state = new_state;
spin_unlock_irqrestore(&qp->q_lock, flags);
- return
status
;
+ return
0
;
}
static u32 ocrdma_set_create_qp_mbx_access_flags(struct ocrdma_qp *qp)