Browse Source

Input: byd - don't wipe dynamically allocated memory twice

Since memory for a private data is allocated by kzalloc() there is no
need to fill it with zeroes immediately after the allocation.

Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Vladimir Zapolskiy 9 years ago
parent
commit
5ad629a82d
1 changed files with 0 additions and 1 deletions
  1. 0 1
      drivers/input/mouse/byd.c

+ 0 - 1
drivers/input/mouse/byd.c

@@ -474,7 +474,6 @@ int byd_init(struct psmouse *psmouse)
 	if (!priv)
 		return -ENOMEM;
 
-	memset(priv, 0, sizeof(*priv));
 	setup_timer(&priv->timer, byd_clear_touch, (unsigned long) psmouse);
 
 	psmouse->private = priv;