Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 354008
b: refs/heads/master
c: 83682cd
h: refs/heads/master
v: v3
  • Loading branch information
Cruz Julian Bishop authored and Greg Kroah-Hartman committed Jan 17, 2013
1 parent dd48bfa commit e60ae8f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 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: 7864a0ac4b354355ac335ee705cea9be00234901
refs/heads/master: 83682cd2fede86c064abac691a5a7091671cfed6
9 changes: 6 additions & 3 deletions trunk/drivers/staging/slicoss/slicoss.c
Original file line number Diff line number Diff line change
Expand Up @@ -2930,11 +2930,14 @@ static int slic_if_init(struct adapter *adapter)
}

if (!adapter->queues_initialized) {
if ((rc = slic_rspqueue_init(adapter)))
rc = slic_rspqueue_init(adapter);
if (rc)
goto err;
if ((rc = slic_cmdq_init(adapter)))
rc = slic_cmdq_init(adapter);
if (rc)
goto err;
if ((rc = slic_rcvqueue_init(adapter)))
rc = slic_rcvqueue_init(adapter);
if (rc)
goto err;
adapter->queues_initialized = 1;
}
Expand Down

0 comments on commit e60ae8f

Please sign in to comment.