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

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
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment