diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2014-11-19 18:30:22 +0100 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.com> | 2015-06-29 14:51:12 +0200 |
commit | 4b8a8262086ece4b7eb34bd2e40cce3b3c9c7079 (patch) | |
tree | f7c6bd8249ca0daf1c9632e9a103e89f1787276f /drivers/hid/hid-picolcd_cir.c | |
parent | 67db8a8086e9b865533348954f5547f1e433101e (diff) | |
download | blackbird-op-linux-4b8a8262086ece4b7eb34bd2e40cce3b3c9c7079.tar.gz blackbird-op-linux-4b8a8262086ece4b7eb34bd2e40cce3b3c9c7079.zip |
HID: picoLCD: Deletion of unnecessary checks before three function calls
The functions backlight_device_unregister(), lcd_device_unregister() and
rc_unregister_device() test whether their argument is NULL and then
return 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>
Reviewed-by: Bruno Prémont <bonbons@linux-vserver.org>
Signed-off-by: Jiri Kosina <jkosina@suse.com>
Diffstat (limited to 'drivers/hid/hid-picolcd_cir.c')
-rw-r--r-- | drivers/hid/hid-picolcd_cir.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/hid/hid-picolcd_cir.c b/drivers/hid/hid-picolcd_cir.c index 045f8ebf16b5..96286510f42e 100644 --- a/drivers/hid/hid-picolcd_cir.c +++ b/drivers/hid/hid-picolcd_cir.c @@ -145,7 +145,6 @@ void picolcd_exit_cir(struct picolcd_data *data) struct rc_dev *rdev = data->rc_dev; data->rc_dev = NULL; - if (rdev) - rc_unregister_device(rdev); + rc_unregister_device(rdev); } |