[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20180122074303.GB26752@brancaleone.zhora.eu>
Date: Mon, 22 Jan 2018 16:43:03 +0900
From: Andi Shyti <andi@...zian.org>
To: SF Markus Elfring <elfring@...rs.sourceforge.net>
Cc: linux-input@...r.kernel.org, Andi Shyti <andi@...zian.org>,
Dmitry Torokhov <dmitry.torokhov@...il.com>,
Günter Röck <linux@...ck-us.net>,
Martin Kepplinger <martink@...teo.de>,
Rob Herring <robh@...nel.org>,
Simon Budig <simon.budig@...nelconcepts.de>,
Stefan Schöfegger
<stefan.schoefegger@...zinger.com>,
LKML <linux-kernel@...r.kernel.org>,
kernel-janitors@...r.kernel.org
Subject: Re: [PATCH] Input: edt-ft5x06: Delete an error message for a failed
memory allocation in edt_ft5x06_ts_probe()
Hi Markus,
On Sun, Jan 21, 2018 at 08:19:00PM +0100, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@...rs.sourceforge.net>
> Date: Sun, 21 Jan 2018 20:10: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@...rs.sourceforge.net>
Acked-by: Andi Shyti <andi@...zian.org>
Thanks,
Andi
> ---
> drivers/input/touchscreen/edt-ft5x06.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/drivers/input/touchscreen/edt-ft5x06.c b/drivers/input/touchscreen/edt-ft5x06.c
> index c53a3d7239e7..9d2799c90150 100644
> --- a/drivers/input/touchscreen/edt-ft5x06.c
> +++ b/drivers/input/touchscreen/edt-ft5x06.c
> @@ -978,10 +978,8 @@ static int edt_ft5x06_ts_probe(struct i2c_client *client,
> dev_dbg(&client->dev, "probing for EDT FT5x06 I2C\n");
>
> tsdata = devm_kzalloc(&client->dev, sizeof(*tsdata), GFP_KERNEL);
> - if (!tsdata) {
> - dev_err(&client->dev, "failed to allocate driver data.\n");
> + if (!tsdata)
> return -ENOMEM;
> - }
>
> chip_data = of_device_get_match_data(&client->dev);
> if (!chip_data)
> --
> 2.16.0
Powered by blists - more mailing lists