diff options
author | Leon Romanovsky <[email protected]> | 2016-11-03 16:44:14 +0200 |
---|---|---|
committer | Doug Ledford <[email protected]> | 2016-12-03 13:12:52 -0500 |
commit | 5ce9f115bd796be4f0dd8230e6b8baeb2c558311 (patch) | |
tree | 1ae28f3a4b640601903588c2d0e4700defbd3a50 | |
parent | 0886d8f0b7c9bb2f85fa8b71c4842f92308de641 (diff) |
IB/hfi1: Remove debug prints after allocation failure
The prints after [k|v][m|z|c]alloc() functions are not needed,
because in case of failure, allocator will print their internal
error prints anyway.
Signed-off-by: Leon Romanovsky <[email protected]>
Signed-off-by: Doug Ledford <[email protected]>
-rw-r--r-- | drivers/infiniband/hw/hfi1/pio.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/hfi1/pio.c b/drivers/infiniband/hw/hfi1/pio.c index 50a3a36d9363..d15ffed48a39 100644 --- a/drivers/infiniband/hw/hfi1/pio.c +++ b/drivers/infiniband/hw/hfi1/pio.c @@ -2053,7 +2053,6 @@ int init_credit_return(struct hfi1_devdata *dd) sizeof(struct credit_return_base), GFP_KERNEL); if (!dd->cr_base) { - dd_dev_err(dd, "Unable to allocate credit return base\n"); ret = -ENOMEM; goto done; } |