aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lib/traceevent/event-parse-api.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/lib/traceevent/event-parse-api.c')
-rw-r--r--tools/lib/traceevent/event-parse-api.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/lib/traceevent/event-parse-api.c b/tools/lib/traceevent/event-parse-api.c
index 0dc011154ee9..8b31c0e00ba3 100644
--- a/tools/lib/traceevent/event-parse-api.c
+++ b/tools/lib/traceevent/event-parse-api.c
@@ -51,7 +51,7 @@ void tep_set_flag(struct tep_handle *tep, int flag)
51 tep->flags |= flag; 51 tep->flags |= flag;
52} 52}
53 53
54unsigned short __tep_data2host2(struct tep_handle *pevent, unsigned short data) 54unsigned short tep_data2host2(struct tep_handle *pevent, unsigned short data)
55{ 55{
56 unsigned short swap; 56 unsigned short swap;
57 57
@@ -64,7 +64,7 @@ unsigned short __tep_data2host2(struct tep_handle *pevent, unsigned short data)
64 return swap; 64 return swap;
65} 65}
66 66
67unsigned int __tep_data2host4(struct tep_handle *pevent, unsigned int data) 67unsigned int tep_data2host4(struct tep_handle *pevent, unsigned int data)
68{ 68{
69 unsigned int swap; 69 unsigned int swap;
70 70
@@ -80,7 +80,7 @@ unsigned int __tep_data2host4(struct tep_handle *pevent, unsigned int data)
80} 80}
81 81
82unsigned long long 82unsigned long long
83__tep_data2host8(struct tep_handle *pevent, unsigned long long data) 83tep_data2host8(struct tep_handle *pevent, unsigned long long data)
84{ 84{
85 unsigned long long swap; 85 unsigned long long swap;
86 86