Input: auo-pixcir-ts - remove custom log for a failed memory allocation
authorMarkus Elfring <[email protected]>
Mon, 22 Jan 2018 18:54:21 +0000 (10:54 -0800)
committerDmitry Torokhov <[email protected]>
Tue, 23 Jan 2018 00:28:24 +0000 (16:28 -0800)
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 <[email protected]>
Reviewed-by: Heiko Stuebner <[email protected]>
Signed-off-by: Dmitry Torokhov <[email protected]>
drivers/input/touchscreen/auo-pixcir-ts.c

index 6592fc5d48b489ee5cc6c7ea2fe797c7e19683b4..398e27c48a514f03232a0db69659cac8fb47f0d5 100644 (file)
@@ -487,10 +487,8 @@ static struct auo_pixcir_ts_platdata *auo_pixcir_parse_dt(struct device *dev)
                return ERR_PTR(-ENOENT);
 
        pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
-       if (!pdata) {
-               dev_err(dev, "failed to allocate platform data\n");
+       if (!pdata)
                return ERR_PTR(-ENOMEM);
-       }
 
        pdata->gpio_int = of_get_gpio(np, 0);
        if (!gpio_is_valid(pdata->gpio_int)) {