diff mbox

[PATCHv2,3/5] validation: cosmetic fixes in odp_time.c

Message ID 1435054119-1216-4-git-send-email-christophe.milard@linaro.org
State Accepted
Commit 001afd3b029099d19ccaf879e3b86d8f8840cd48
Headers show

Commit Message

Christophe Milard June 23, 2015, 10:08 a.m. UTC
Preparing for the next patch where this file is moved and
check-patch would yell if these things were still there.

Signed-off-by: Christophe Milard <christophe.milard@linaro.org>
---
 test/validation/odp_time.c | 2 ++
 1 file changed, 2 insertions(+)
diff mbox

Patch

diff --git a/test/validation/odp_time.c b/test/validation/odp_time.c
index 3005a26..f2debb7 100644
--- a/test/validation/odp_time.c
+++ b/test/validation/odp_time.c
@@ -34,6 +34,7 @@  static void system_test_odp_cycles_diff(void)
 static void system_test_odp_cycles_negative_diff(void)
 {
 	uint64_t diff, cycles1, cycles2;
+
 	cycles1 = 10;
 	cycles2 = 5;
 	diff = odp_time_diff_cycles(cycles1, cycles2);
@@ -45,6 +46,7 @@  static void system_test_odp_time_conversion(void)
 {
 	uint64_t ns1, ns2, cycles;
 	uint64_t upper_limit, lower_limit;
+
 	ns1 = 100;
 	cycles = odp_time_ns_to_cycles(ns1);
 	CU_ASSERT(cycles > 0);