Skip to content

Commit

Permalink
IPoIB: Fix typo to end statement with ';' instead of ','
Browse files Browse the repository at this point in the history
Signed-off-by: Eli Cohen <eli@mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
  • Loading branch information
Eli Cohen authored and Roland Dreier committed Oct 10, 2007
1 parent 017aadc commit b3ac60f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/infiniband/ulp/ipoib/ipoib_verbs.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ int ipoib_transport_dev_init(struct net_device *dev, struct ib_device *ca)
goto out_free_cq;

init_attr.send_cq = priv->cq;
init_attr.recv_cq = priv->cq,
init_attr.recv_cq = priv->cq;

priv->qp = ib_create_qp(priv->pd, &init_attr);
if (IS_ERR(priv->qp)) {
Expand Down

0 comments on commit b3ac60f

Please sign in to comment.