From: Markus Elfring <[email protected]>
Date: Thu, 25 Jan 2018 19:06:07 +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 <[email protected]>
---
 drivers/input/misc/ims-pcu.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/input/misc/ims-pcu.c b/drivers/input/misc/ims-pcu.c
index 3d51175c4d72..4aca2a02ff6d 100644
--- a/drivers/input/misc/ims-pcu.c
+++ b/drivers/input/misc/ims-pcu.c
@@ -1556,7 +1556,6 @@ static int ims_pcu_buffers_alloc(struct ims_pcu *pcu)
         */
        pcu->urb_out_buf = kmalloc(pcu->max_out_size, GFP_KERNEL);
        if (!pcu->urb_out_buf) {
-               dev_err(pcu->dev, "Failed to allocate memory for write 
buffer\n");
                error = -ENOMEM;
                goto err_free_in_urb;
        }
-- 
2.16.1

Reply via email to