diff options
author | Bart Van Assche <bart.vanassche@sandisk.com> | 2015-05-05 13:01:39 +0200 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2015-05-05 19:21:27 +0200 |
commit | 8f71c1a27b84948720be17fffba71a67a1f0942d (patch) | |
tree | 47a73909490e473d065b0e1d5c0235d8d7427d87 | |
parent | iw_cxgb4: Remove negative advice dmesg warnings (diff) | |
download | linux-8f71c1a27b84948720be17fffba71a67a1f0942d.tar.xz linux-8f71c1a27b84948720be17fffba71a67a1f0942d.zip |
IPoIB/CM: Fix indentation level
See also patch "IPoIB/cm: Add connected mode support for devices
without SRQs" (commit ID 68e995a29572). Detected by smatch.
Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com>
Cc: Pradeep Satyanarayana <pradeeps@linux.vnet.ibm.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
-rw-r--r-- | drivers/infiniband/ulp/ipoib/ipoib_cm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_cm.c b/drivers/infiniband/ulp/ipoib/ipoib_cm.c index 56959adb6c7d..cf32a778e7d0 100644 --- a/drivers/infiniband/ulp/ipoib/ipoib_cm.c +++ b/drivers/infiniband/ulp/ipoib/ipoib_cm.c @@ -386,8 +386,8 @@ static int ipoib_cm_nonsrq_init_rx(struct net_device *dev, struct ib_cm_id *cm_i rx->rx_ring[i].mapping, GFP_KERNEL)) { ipoib_warn(priv, "failed to allocate receive buffer %d\n", i); - ret = -ENOMEM; - goto err_count; + ret = -ENOMEM; + goto err_count; } ret = ipoib_cm_post_receive_nonsrq(dev, rx, &t->wr, t->sge, i); if (ret) { |