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>
This commit is contained in:

committed by
Jiri Kosina

parent
67db8a8086
commit
4b8a826208
@@ -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);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user