From: Jingoo Han <jg1.han@samsung.com>
Date: Mon, 16 Sep 2013 15:32:54 +0000 (-0700)
Subject: Input: cypress_ps2 - remove casting the return value which is a void pointer
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=221a27c240343b39052c05baa64deace845801ff;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git

Input: cypress_ps2 - remove casting the return value which is a void pointer

Casting the return value which is a void pointer is redundant.
The conversion from void pointer to any other pointer type is
guaranteed by the C programming language.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---

diff --git a/drivers/input/mouse/cypress_ps2.c b/drivers/input/mouse/cypress_ps2.c
index f51765fff054..ef651ccf130f 100644
--- a/drivers/input/mouse/cypress_ps2.c
+++ b/drivers/input/mouse/cypress_ps2.c
@@ -679,7 +679,7 @@ int cypress_init(struct psmouse *psmouse)
 {
 	struct cytp_data *cytp;
 
-	cytp = (struct cytp_data *)kzalloc(sizeof(struct cytp_data), GFP_KERNEL);
+	cytp = kzalloc(sizeof(struct cytp_data), GFP_KERNEL);
 	psmouse->private = (void *)cytp;
 	if (cytp == NULL)
 		return -ENOMEM;