Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 122871
b: refs/heads/master
c: 662f44a
h: refs/heads/master
i:
  122869: 51a263a
  122867: 3d67f22
  122863: f4e0209
v: v3
  • Loading branch information
Julia Lawall authored and David S. Miller committed Dec 26, 2008
1 parent ea778b4 commit d833f8e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b0fd0d235df2b3cf8e5e244e301614092a9c317c
refs/heads/master: 662f44af635f6bde366d44abacaeec7916d9f168
4 changes: 2 additions & 2 deletions trunk/drivers/net/ehea/ehea_qmr.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ struct ehea_cq *ehea_create_cq(struct ehea_adapter *adapter,
goto out_kill_hwq;
}
} else {
if ((hret != H_PAGE_REGISTERED) || (!vpage)) {
if (hret != H_PAGE_REGISTERED) {
ehea_error("CQ: registration of page failed "
"hret=%lx\n", hret);
goto out_kill_hwq;
Expand Down Expand Up @@ -303,7 +303,7 @@ struct ehea_eq *ehea_create_eq(struct ehea_adapter *adapter,
goto out_kill_hwq;

} else {
if ((hret != H_PAGE_REGISTERED) || (!vpage))
if (hret != H_PAGE_REGISTERED)
goto out_kill_hwq;

}
Expand Down

0 comments on commit d833f8e

Please sign in to comment.