diff options
author | Lee Jones <lee.jones@linaro.org> | 2016-08-04 10:21:47 +0100 |
---|---|---|
committer | Bjorn Andersson <bjorn.andersson@linaro.org> | 2016-08-10 10:46:14 -0700 |
commit | c14b9a940e53a50f8fc56cc613525d2db40f19be (patch) | |
tree | d03de007cc1595c08fb903f090e6af4342b114a8 /drivers/remoteproc | |
parent | 353861660aa2e4453df416879f48478a09427510 (diff) | |
download | talos-obmc-linux-c14b9a940e53a50f8fc56cc613525d2db40f19be.tar.gz talos-obmc-linux-c14b9a940e53a50f8fc56cc613525d2db40f19be.zip |
remoteproc: core: Remove pointless OOM print
These types of error prints are superfluous. The system will
pick up on OOM issues and let the user know.
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Diffstat (limited to 'drivers/remoteproc')
-rw-r--r-- | drivers/remoteproc/remoteproc_core.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/remoteproc/remoteproc_core.c b/drivers/remoteproc/remoteproc_core.c index 383654c70b82..63fd365dec14 100644 --- a/drivers/remoteproc/remoteproc_core.c +++ b/drivers/remoteproc/remoteproc_core.c @@ -617,7 +617,6 @@ static int rproc_handle_carveout(struct rproc *rproc, if (rproc->domain) { mapping = kzalloc(sizeof(*mapping), GFP_KERNEL); if (!mapping) { - dev_err(dev, "kzalloc mapping failed\n"); ret = -ENOMEM; goto dma_free; } |