projects
/
GitHub
/
moto-9609
/
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:
615322f
)
HID: wacom: Delete unnecessary checks before the function call "input_free_device"
author
Markus Elfring
<elfring@users.sourceforge.net>
Thu, 9 Jul 2015 06:08:15 +0000
(08:08 +0200)
committer
Jiri Kosina
<jkosina@suse.com>
Thu, 9 Jul 2015 12:28:14 +0000
(14:28 +0200)
The input_free_device() function tests whether its argument is NULL and
then returns immediately. Thus the test around the call is not needed.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Jiri Kosina <jkosina@suse.com>
drivers/hid/wacom_sys.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/hid/wacom_sys.c
b/drivers/hid/wacom_sys.c
index 4c0ffca97befd61cf3cdd947138d14070c4e7895..936ad7770ec3a5eb4849f93bd3e050989d674833 100644
(file)
--- a/
drivers/hid/wacom_sys.c
+++ b/
drivers/hid/wacom_sys.c
@@
-1149,12
+1149,9
@@
static void wacom_free_inputs(struct wacom *wacom)
{
struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
- if (wacom_wac->pen_input)
- input_free_device(wacom_wac->pen_input);
- if (wacom_wac->touch_input)
- input_free_device(wacom_wac->touch_input);
- if (wacom_wac->pad_input)
- input_free_device(wacom_wac->pad_input);
+ input_free_device(wacom_wac->pen_input);
+ input_free_device(wacom_wac->touch_input);
+ input_free_device(wacom_wac->pad_input);
wacom_wac->pen_input = NULL;
wacom_wac->touch_input = NULL;
wacom_wac->pad_input = NULL;