Commit df732546 authored by Alex Elder's avatar Alex Elder Committed by Greg Kroah-Hartman
Browse files

greybus: tracing: fix a bad tracepoint



In gb_operation_put_active(), the wrong trace point is being called.
Fix that.

Signed-off-by: default avatarAlex Elder <elder@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent bae7c690
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ static void gb_operation_put_active(struct gb_operation *operation)

	spin_lock_irqsave(&connection->lock, flags);

	trace_gb_operation_get_active(operation);
	trace_gb_operation_put_active(operation);

	if (--operation->active == 0) {
		list_del(&operation->links);