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


Groups > linux.kernel > #1725322

[PATCH 1/4] [media] sp2: Delete an error message for a failed memory allocation in sp2_probe()

From SF Markus Elfring <elfring@users.sourceforge.net>
Newsgroups linux.kernel
Subject [PATCH 1/4] [media] sp2: Delete an error message for a failed memory allocation in sp2_probe()
Date 2017-09-01 21:50 +0200
Message-ID <ul070-15q-29@gated-at.bofh.it> (permalink)
References <ul06Z-15q-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


From: Markus Elfring <elfring@users.sourceforge.net>
Date: Fri, 1 Sep 2017 20:44:05 +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/dvb-frontends/sp2.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/media/dvb-frontends/sp2.c b/drivers/media/dvb-frontends/sp2.c
index 43d47dfcc7b8..d3b4f8822096 100644
--- a/drivers/media/dvb-frontends/sp2.c
+++ b/drivers/media/dvb-frontends/sp2.c
@@ -385,6 +385,5 @@ static int sp2_probe(struct i2c_client *client,
 	if (!s) {
 		ret = -ENOMEM;
-		dev_err(&client->dev, "kzalloc() failed\n");
 		goto err;
 	}
 
-- 
2.14.1

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 0/4] [media] SP2: Adjustments for two function implementations SF Markus Elfring <elfring@users.sourceforge.net> - 2017-09-01 21:50 +0200
  [PATCH 1/4] [media] sp2: Delete an error message for a failed memory  allocation in sp2_probe() SF Markus Elfring <elfring@users.sourceforge.net> - 2017-09-01 21:50 +0200
  [PATCH 2/4] [media] sp2: Improve a size determination in sp2_probe() SF Markus Elfring <elfring@users.sourceforge.net> - 2017-09-01 21:50 +0200

csiph-web