Messages in this thread Patch in this message |  | | Subject | [PATCH 1/2] Input: gamecon: Delete an error message for a failed memory allocation in gc_attach() | From | SF Markus Elfring <> | Date | Sat, 27 Jan 2018 17:14:14 +0100 |
| |
From: Markus Elfring <elfring@users.sourceforge.net> Date: Sat, 27 Jan 2018 16:27:11 +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/joystick/gamecon.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/input/joystick/gamecon.c b/drivers/input/joystick/gamecon.c index 2ffb2e8bdc3b..f6006383d30d 100644 --- a/drivers/input/joystick/gamecon.c +++ b/drivers/input/joystick/gamecon.c @@ -966,10 +966,8 @@ static void gc_attach(struct parport *pp) } gc = kzalloc(sizeof(struct gc), GFP_KERNEL); - if (!gc) { - pr_err("Not enough memory\n"); + if (!gc) goto err_unreg_pardev; - } mutex_init(&gc->mutex); gc->pd = pd; -- 2.16.1
|  |