mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-14 09:47:20 +00:00
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>
This commit is contained in:
parent
52764fed50
commit
221a27c240
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user