From: Alex Elder Date: Tue, 24 May 2016 04:05:29 +0000 (-0500) Subject: greybus: tracing: fix a bad tracepoint X-Git-Tag: v4.9-rc1~119^2~378^2~21^2~341 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=df732546ce127e3bd8d55f4f7073aebd4482438c;p=karo-tx-linux.git 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 --- 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);