summaryrefslogtreecommitdiff
path: root/samples/nanokernel/benchmark/sys_kernel/src/syskernel.c
diff options
context:
space:
mode:
authorYonattan Louise <yonattan.a.louise.mendoza@intel.com>2015-05-12 10:43:08 -0500
committerAnas Nashif <anas.nashif@intel.com>2016-02-05 20:13:59 -0500
commitd133f9661d670ca5340dd032ba3630f44d995af9 (patch)
treee78d038378959efd623838122b6ebf377519f064 /samples/nanokernel/benchmark/sys_kernel/src/syskernel.c
parent8c074e2afc7734189a8e678e7a6a478d90dd8ef4 (diff)
Fix checkpatch issue - WARNING:SPACING
This commit fixes the issue marked as SPACING by the checkpatch script deleting the whitespaces between the function name and the open parenthesis. Change-Id: I972b1646904bf6e1131263f94ab5024a528ae07d Signed-off-by: Yonattan Louise <yonattan.a.louise.mendoza@intel.com>
Diffstat (limited to 'samples/nanokernel/benchmark/sys_kernel/src/syskernel.c')
-rw-r--r--samples/nanokernel/benchmark/sys_kernel/src/syskernel.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/samples/nanokernel/benchmark/sys_kernel/src/syskernel.c b/samples/nanokernel/benchmark/sys_kernel/src/syskernel.c
index 94f4131d6..aff016126 100644
--- a/samples/nanokernel/benchmark/sys_kernel/src/syskernel.c
+++ b/samples/nanokernel/benchmark/sys_kernel/src/syskernel.c
@@ -113,7 +113,7 @@ int check_result(
bench_test_end checks tCheck static variable.
bench_test_start modifies it
*/
- if (bench_test_end () != 0) {
+ if (bench_test_end() != 0) {
fprintf(output_file, sz_case_result_fmt, sz_fail);
fprintf(output_file, sz_case_details_fmt,
"timer tick happened. Results are inaccurate");
@@ -211,7 +211,7 @@ void main(void)
do {
fprintf(output_file, sz_module_title_fmt, "Nanokernel API test");
- fprintf (output_file, sz_kernel_ver_fmt, kernel_version_get ());
+ fprintf(output_file, sz_kernel_ver_fmt, kernel_version_get());
fprintf(output_file,
"\n\nEach test below are repeated %d times and the average\n"
"time for one iteration is displayed.", NUMBER_OF_LOOPS);
@@ -234,7 +234,7 @@ void main(void)
fprintf(output_file, sz_module_result_fmt, sz_fail);
}
- while (continuously && !kbhit ());
+ while (continuously && !kbhit());
output_close();
}