From 58a881376357caec4c992b73779102142096d383 Mon Sep 17 00:00:00 2001 From: Alex Elder Date: Fri, 20 May 2016 11:44:56 -0500 Subject: [PATCH] greybus: tracing: eliminate "location" comments Each message event has a set of comments preceeding its definition. One of them, "location", indicates where that event is used. I am certain that this comment will become out of date very easily. Hopefully just the name of the event is a good enough suggestion about where it will be used. Signed-off-by: Alex Elder Reviewed-by: Bryan O'Donoghue Reviewed-by: Jeffrey Carlyle Signed-off-by: Greg Kroah-Hartman --- drivers/staging/greybus/greybus_trace.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/drivers/staging/greybus/greybus_trace.h b/drivers/staging/greybus/greybus_trace.h index 40c24cf9ba7a..4fd9269c97d4 100644 --- a/drivers/staging/greybus/greybus_trace.h +++ b/drivers/staging/greybus/greybus_trace.h @@ -60,35 +60,30 @@ DECLARE_EVENT_CLASS(gb_message, /* * tracepoint name greybus:gb_message_send * description send a greybus message - * location operation.c:gb_message_send */ DEFINE_MESSAGE_EVENT(gb_message_send); /* * tracepoint name greybus:gb_message_recv_request * description receive a greybus request - * location operation.c:gb_connection_recv_request */ DEFINE_MESSAGE_EVENT(gb_message_recv_request); /* * tracepoint name greybus:gb_message_recv_response * description receive a greybus response - * location operation.c:gb_connection_recv_response */ DEFINE_MESSAGE_EVENT(gb_message_recv_response); /* * tracepoint name greybus:gb_message_cancel_outgoing * description cancel outgoing greybus request - * location operation.c:gb_message_cancel */ DEFINE_MESSAGE_EVENT(gb_message_cancel_outgoing); /* * tracepoint name greybus:gb_message_cancel_incoming * description cancel incoming greybus request - * location operation.c:gb_message_cancel_incoming */ DEFINE_MESSAGE_EVENT(gb_message_cancel_incoming); @@ -195,14 +190,12 @@ DECLARE_EVENT_CLASS(gb_host_device, /* * tracepoint name greybus:gb_host_device_send * description tracepoint representing the point data are transmitted - * location es2.c:message_send */ DEFINE_HD_EVENT(gb_host_device_send); /* * tracepoint name greybus:gb_host_device_recv * description tracepoint representing the point data are received - * location es2.c:cport_in_callback */ DEFINE_HD_EVENT(gb_host_device_recv); -- 2.39.2