* [PATCH] Input: eeti_ts: Delete an error message for a failed memory allocation in eeti_ts_probe()
@ 2018-01-21 19:05 SF Markus Elfring
0 siblings, 0 replies; only message in thread
From: SF Markus Elfring @ 2018-01-21 19:05 UTC (permalink / raw)
To: linux-input, Daniel Mack, Dmitry Torokhov, Günter Röck
Cc: LKML, kernel-janitors
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Sun, 21 Jan 2018 20:00:03 +0100
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/input/touchscreen/eeti_ts.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/input/touchscreen/eeti_ts.c b/drivers/input/touchscreen/eeti_ts.c
index 2facad75eb6d..337f171e0f86 100644
--- a/drivers/input/touchscreen/eeti_ts.c
+++ b/drivers/input/touchscreen/eeti_ts.c
@@ -161,10 +161,8 @@ static int eeti_ts_probe(struct i2c_client *client,
*/
eeti = devm_kzalloc(dev, sizeof(*eeti), GFP_KERNEL);
- if (!eeti) {
- dev_err(dev, "failed to allocate driver data\n");
+ if (!eeti)
return -ENOMEM;
- }
input = devm_input_allocate_device(dev);
if (!input) {
--
2.16.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2018-01-21 19:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-21 19:05 [PATCH] Input: eeti_ts: Delete an error message for a failed memory allocation in eeti_ts_probe() SF Markus Elfring
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).