diff options
-rw-r--r-- | drivers/infiniband/hw/mthca/mthca_memfree.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mthca/mthca_memfree.c b/drivers/infiniband/hw/mthca/mthca_memfree.c index e8f93478f38d..46981d48c232 100644 --- a/drivers/infiniband/hw/mthca/mthca_memfree.c +++ b/drivers/infiniband/hw/mthca/mthca_memfree.c @@ -337,7 +337,8 @@ int mthca_alloc_db(struct mthca_dev *dev, int type, u32 qn, u32 **db) break; default: - return -1; + ret = -EINVAL; + goto out; } for (i = start; i != end; i += dir) |