diff mbox

[3/9] remoteproc: core: Remove pointless OOM print

Message ID 20160804092153.23032-4-lee.jones@linaro.org
State New
Headers show

Commit Message

Lee Jones Aug. 4, 2016, 9:21 a.m. UTC
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>

---
 drivers/remoteproc/remoteproc_core.c | 1 -
 1 file changed, 1 deletion(-)

-- 
2.9.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

Comments

Bjorn Andersson Aug. 10, 2016, 5:47 p.m. UTC | #1
On Tue 09 Aug 11:10 PDT 2016, Lee Jones wrote:

> On Tue, 09 Aug 2016, Bjorn Andersson wrote:

> 

> > On Thu 04 Aug 02:21 PDT 2016, Lee Jones wrote:

> > 

> > > 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>

> > 

> > Acked-by: Bjorn Andersson <bjorn.andersson@linaro.org>

> 

> This doesn't rely on anything else, so you can just take it.

> 


Of course...

Applied patch 1 through 3.

Regards,
Bjorn

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
diff mbox

Patch

diff --git a/drivers/remoteproc/remoteproc_core.c b/drivers/remoteproc/remoteproc_core.c
index 5654a81..4914482 100644
--- a/drivers/remoteproc/remoteproc_core.c
+++ b/drivers/remoteproc/remoteproc_core.c
@@ -619,7 +619,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;
 		}