aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2018-01-22 13:54:21 -0500
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2018-01-22 19:28:24 -0500
commiteae7d90c9224ccbbd8a58a3f6610896242c620a0 (patch)
tree2231c504d461ebc10b6b1aad9a1ff4fc8d295141
parentaac21bbbf7d7136364c8ac2ef3e8aed2d887a760 (diff)
Input: auo-pixcir-ts - remove custom log for a failed memory allocation
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> Reviewed-by: Heiko Stuebner <heiko@sntech.de> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r--drivers/input/touchscreen/auo-pixcir-ts.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/input/touchscreen/auo-pixcir-ts.c b/drivers/input/touchscreen/auo-pixcir-ts.c
index 6592fc5d48b4..398e27c48a51 100644
--- a/drivers/input/touchscreen/auo-pixcir-ts.c
+++ b/drivers/input/touchscreen/auo-pixcir-ts.c
@@ -487,10 +487,8 @@ static struct auo_pixcir_ts_platdata *auo_pixcir_parse_dt(struct device *dev)
487 return ERR_PTR(-ENOENT); 487 return ERR_PTR(-ENOENT);
488 488
489 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL); 489 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
490 if (!pdata) { 490 if (!pdata)
491 dev_err(dev, "failed to allocate platform data\n");
492 return ERR_PTR(-ENOMEM); 491 return ERR_PTR(-ENOMEM);
493 }
494 492
495 pdata->gpio_int = of_get_gpio(np, 0); 493 pdata->gpio_int = of_get_gpio(np, 0);
496 if (!gpio_is_valid(pdata->gpio_int)) { 494 if (!gpio_is_valid(pdata->gpio_int)) {