Commit dfc065f1 authored by Rupesh Gujare's avatar Rupesh Gujare Committed by Greg Kroah-Hartman
Browse files

staging: ozwpan: Fix wrong error check.



schedule_work() returns true if succeeded & false on failure,
error check was doing exactly reverse.
Also removes extra variable.

Signed-off-by: default avatarRupesh Gujare <rupesh.gujare@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9efed32c
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -261,17 +261,13 @@ void oz_pd_free(struct work_struct *work)
 */
void oz_pd_destroy(struct oz_pd *pd)
{
	int ret;

	if (hrtimer_active(&pd->timeout))
		hrtimer_cancel(&pd->timeout);
	if (hrtimer_active(&pd->heartbeat))
		hrtimer_cancel(&pd->heartbeat);

	INIT_WORK(&pd->workitem, oz_pd_free);
	ret = schedule_work(&pd->workitem);

	if (ret)
	if (!schedule_work(&pd->workitem))
		oz_pd_dbg(pd, ON, "failed to schedule workitem\n");
}