From df732546ce127e3bd8d55f4f7073aebd4482438c Mon Sep 17 00:00:00 2001 From: Alex Elder Date: Mon, 23 May 2016 23:05:29 -0500 Subject: [PATCH] greybus: tracing: fix a bad tracepoint In gb_operation_put_active(), the wrong trace point is being called. Fix that. Signed-off-by: Alex Elder Signed-off-by: Greg Kroah-Hartman --- drivers/staging/greybus/operation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/greybus/operation.c b/drivers/staging/greybus/operation.c index 259bd920e715..20a8d74473d0 100644 --- a/drivers/staging/greybus/operation.c +++ b/drivers/staging/greybus/operation.c @@ -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); -- 2.39.2