Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 27ba1d56 authored by Markus Elfring's avatar Markus Elfring Committed by Jiri Kosina
Browse files

HID: wacom: Delete an unnecessary check before kobject_put()



The kobject_put() 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: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 6f1da317
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1353,7 +1353,6 @@ static void wacom_clean_inputs(struct wacom *wacom)
		else
			input_free_device(wacom->wacom_wac.pad_input);
	}
	if (wacom->remote_dir)
	kobject_put(wacom->remote_dir);
	wacom->wacom_wac.pen_input = NULL;
	wacom->wacom_wac.touch_input = NULL;