diff mbox

[3/5] validation: cosmetic fixes in odp_crypto.c

Message ID 1434577905-11797-4-git-send-email-christophe.milard@linaro.org
State Accepted
Commit 8291d12e235d54975391d28c63a9aed553d79471
Headers show

Commit Message

Christophe Milard June 17, 2015, 9:51 p.m. UTC
Preparing for the next patch where this file is moved and
check-odp would yell if these things were still there.

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

Patch

diff --git a/test/validation/odp_crypto.c b/test/validation/odp_crypto.c
index 3393909..56f9938 100644
--- a/test/validation/odp_crypto.c
+++ b/test/validation/odp_crypto.c
@@ -8,10 +8,10 @@ 
 #include "odp_cunit_common.h"
 #include "odp_crypto_test_inp.h"
 
-#define SHM_PKT_POOL_SIZE	(512*2048*2)
+#define SHM_PKT_POOL_SIZE	(512 * 2048 * 2)
 #define SHM_PKT_POOL_BUF_SIZE	(1024 * 32)
 
-#define SHM_COMPL_POOL_SIZE	(128*1024)
+#define SHM_COMPL_POOL_SIZE	(128 * 1024)
 #define SHM_COMPL_POOL_BUF_SIZE	128
 
 static CU_SuiteInfo crypto_suites[] = {
@@ -40,7 +40,7 @@  int tests_global_init(void)
 	memset(&params, 0, sizeof(params));
 	params.pkt.seg_len = SHM_PKT_POOL_BUF_SIZE;
 	params.pkt.len     = SHM_PKT_POOL_BUF_SIZE;
-	params.pkt.num     = SHM_PKT_POOL_SIZE/SHM_PKT_POOL_BUF_SIZE;
+	params.pkt.num     = SHM_PKT_POOL_SIZE / SHM_PKT_POOL_BUF_SIZE;
 	params.type        = ODP_POOL_PACKET;
 
 	pool = odp_pool_create("packet_pool", ODP_SHM_NULL, &params);