Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1588109 > unrolled thread

[PATCH] soc: blackfin: remove 'out of memory' message

Started byMihai Burduselu <michelcatalin@gmail.com>
First post2017-02-25 11:30 +0100
Last post2017-02-25 11:30 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] soc: blackfin: remove 'out of memory' message Mihai Burduselu <michelcatalin@gmail.com> - 2017-02-25 11:30 +0100

#1588109 — [PATCH] soc: blackfin: remove 'out of memory' message

FromMihai Burduselu <michelcatalin@gmail.com>
Date2017-02-25 11:30 +0100
Subject[PATCH] soc: blackfin: remove 'out of memory' message
Message-ID<teHLY-6lF-13@gated-at.bofh.it>
reported by checkpatch.pl

Signed-off-by: Mihai Burduselu <michelcatalin@gmail.com>
---
 sound/soc/blackfin/bf5xx-sport.c | 8 ++------
 sound/soc/blackfin/bf6xx-sport.c | 4 +---
 2 files changed, 3 insertions(+), 9 deletions(-)

diff --git a/sound/soc/blackfin/bf5xx-sport.c b/sound/soc/blackfin/bf5xx-sport.c
index 9dfa1241ea66..c445d6cc875e 100644
--- a/sound/soc/blackfin/bf5xx-sport.c
+++ b/sound/soc/blackfin/bf5xx-sport.c
@@ -876,10 +876,8 @@ struct sport_device *sport_init(struct platform_device *pdev,
 	}
 
 	sport = kzalloc(sizeof(*sport), GFP_KERNEL);
-	if (!sport) {
-		dev_err(dev, "failed to allocate for sport device\n");
+	if (!sport)
 		goto __init_err0;
-	}
 
 	sport->num = param.num;
 	sport->dma_rx_chan = param.dma_rx_chan;
@@ -921,10 +919,8 @@ struct sport_device *sport_init(struct platform_device *pdev,
 	sport->dummy_count = param.dummy_count;
 
 	sport->private_data = kzalloc(priv_size, GFP_KERNEL);
-	if (!sport->private_data) {
-		dev_err(dev, "could not alloc priv data %zu bytes\n", priv_size);
+	if (!sport->private_data)
 		goto __init_err4;
-	}
 
 	if (L1_DATA_A_LENGTH)
 		sport->dummy_buf = l1_data_sram_zalloc(param.dummy_count * 2);
diff --git a/sound/soc/blackfin/bf6xx-sport.c b/sound/soc/blackfin/bf6xx-sport.c
index dfb744381c42..b56ff75d4c13 100644
--- a/sound/soc/blackfin/bf6xx-sport.c
+++ b/sound/soc/blackfin/bf6xx-sport.c
@@ -388,10 +388,8 @@ struct sport_device *sport_create(struct platform_device *pdev)
 	int ret;
 
 	sport = kzalloc(sizeof(*sport), GFP_KERNEL);
-	if (!sport) {
-		dev_err(dev, "Unable to allocate memory for sport device\n");
+	if (!sport)
 		return NULL;
-	}
 	sport->pdev = pdev;
 
 	ret = sport_get_resource(sport);
-- 
2.11.0

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web