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

Commit 45052461 authored by Johanna Abrahamsson's avatar Johanna Abrahamsson Committed by Greg Kroah-Hartman
Browse files

staging: android: ion: Remove ret variable in ion_handle_put_nolock



It is not necessary to save the return value of kref_put since it is directly
returned.

Signed-off-by: default avatarJohanna Abrahamsson <johanna@mjao.org>
Acked-by: default avatarLaura Abbott <labbott@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 679011bd
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -383,11 +383,7 @@ static void ion_handle_get(struct ion_handle *handle)

static int ion_handle_put_nolock(struct ion_handle *handle)
{
	int ret;

	ret = kref_put(&handle->ref, ion_handle_destroy);

	return ret;
	return kref_put(&handle->ref, ion_handle_destroy);
}

static int ion_handle_put(struct ion_handle *handle)