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


Groups > linux.kernel > #1725497 > unrolled thread

[PATCH 3/4] [media] adv7842: Delete an error message for a failed memory allocation in adv7842_probe()

Started bySF Markus Elfring <elfring@users.sourceforge.net>
First post2017-09-02 15:10 +0200
Last post2017-09-02 15:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 3/4] [media] adv7842: Delete an error message for a failed  memory allocation in adv7842_probe() SF Markus Elfring <elfring@users.sourceforge.net> - 2017-09-02 15:10 +0200

#1725497 — [PATCH 3/4] [media] adv7842: Delete an error message for a failed memory allocation in adv7842_probe()

FromSF Markus Elfring <elfring@users.sourceforge.net>
Date2017-09-02 15:10 +0200
Subject[PATCH 3/4] [media] adv7842: Delete an error message for a failed memory allocation in adv7842_probe()
Message-ID<ulgls-3mm-1@gated-at.bofh.it>
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Sat, 2 Sep 2017 12:50:19 +0200

Omit an extra message for a memory allocation failure in this function.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 drivers/media/i2c/adv7842.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/media/i2c/adv7842.c b/drivers/media/i2c/adv7842.c
index 303effda1a2e..366a294edd7b 100644
--- a/drivers/media/i2c/adv7842.c
+++ b/drivers/media/i2c/adv7842.c
@@ -3471,7 +3471,5 @@ static int adv7842_probe(struct i2c_client *client,
-	if (!state) {
-		v4l_err(client, "Could not allocate adv7842_state memory!\n");
+	if (!state)
 		return -ENOMEM;
-	}
 
 	/* platform data */
 	state->pdata = *pdata;
-- 
2.14.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web