* [PATCH] Input: kxtj9: Delete an error message for a failed memory allocation in kxtj9_probe()
@ 2018-01-25 17:18 SF Markus Elfring
0 siblings, 0 replies; only message in thread
From: SF Markus Elfring @ 2018-01-25 17:18 UTC (permalink / raw)
To: linux-input, Dmitry Torokhov; +Cc: LKML, kernel-janitors
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Thu, 25 Jan 2018 18:13:57 +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/misc/kxtj9.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/drivers/input/misc/kxtj9.c b/drivers/input/misc/kxtj9.c
index efaffcc57e36..ddd5ca6812cb 100644
--- a/drivers/input/misc/kxtj9.c
+++ b/drivers/input/misc/kxtj9.c
@@ -526,11 +526,8 @@ static int kxtj9_probe(struct i2c_client *client,
}
tj9 = kzalloc(sizeof(*tj9), GFP_KERNEL);
- if (!tj9) {
- dev_err(&client->dev,
- "failed to allocate memory for module data\n");
+ if (!tj9)
return -ENOMEM;
- }
tj9->client = client;
tj9->pdata = *pdata;
--
2.16.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2018-01-25 17:18 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-25 17:18 [PATCH] Input: kxtj9: Delete an error message for a failed memory allocation in kxtj9_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