projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
82ba0d8
)
Input: byd - don't wipe dynamically allocated memory twice
author
Vladimir Zapolskiy
<vz@mleia.com>
Tue, 26 Apr 2016 16:50:31 +0000
(09:50 -0700)
committer
Dmitry Torokhov
<dmitry.torokhov@gmail.com>
Fri, 29 Apr 2016 20:59:01 +0000
(13:59 -0700)
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>
drivers/input/mouse/byd.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/input/mouse/byd.c
b/drivers/input/mouse/byd.c
index fdc243ca93ed7c50c89c18de6477e6b3c6d44a6f..ec73f7564245d6567eaf492003f50365a4e64985 100644
(file)
--- a/
drivers/input/mouse/byd.c
+++ b/
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;