aboutsummaryrefslogtreecommitdiff
path: root/src/lib/trace.c
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2016-08-01 12:20:40 -0700
committerMartin Roth <martinroth@google.com>2016-09-07 22:28:00 +0200
commitcbc0416ea7118507af258594a8f001eea27cff10 (patch)
treeb0735b583af60d8ca0a38b0fbb7075f0d4496d65 /src/lib/trace.c
parent29fc9bb855cb878aee263cd1fe110e3bb3e98c80 (diff)
src/lib: Fix checkpatch warnings
The script checkpatch.pl complains about these files. Fix the warnings. Change-Id: I4271cc35bb101447a316a75273cf8a6e95ed62d5 Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: https://review.coreboot.org/16011 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/lib/trace.c')
-rw-r--r--src/lib/trace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/trace.c b/src/lib/trace.c
index 8f523311d0..b11881760d 100644
--- a/src/lib/trace.c
+++ b/src/lib/trace.c
@@ -19,7 +19,7 @@
int volatile trace_dis = 0;
-void __cyg_profile_func_enter( void *func, void *callsite)
+void __cyg_profile_func_enter(void *func, void *callsite)
{
if (trace_dis)
@@ -30,6 +30,6 @@ void __cyg_profile_func_enter( void *func, void *callsite)
ENABLE_TRACE
}
-void __cyg_profile_func_exit( void *func, void *callsite )
+void __cyg_profile_func_exit(void *func, void *callsite)
{
}