From 1e353ad2e190b2741494cbd6761c6434e7b6a267 Mon Sep 17 00:00:00 2001 From: Gabriele Gristina Date: Sun, 27 Nov 2016 23:59:29 +0100 Subject: [PATCH] Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ... --- OpenCL/m07100.cl | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/OpenCL/m07100.cl b/OpenCL/m07100.cl index db7e23e51..511807b94 100644 --- a/OpenCL/m07100.cl +++ b/OpenCL/m07100.cl @@ -41,7 +41,7 @@ __constant u64 k_sha512[80] = SHA512C4c, SHA512C4d, SHA512C4e, SHA512C4f, }; -void sha512_transform_S (const u64 w[16], u64 dgst[8]) +static void sha512_transform_S (const u64 w[16], u64 dgst[8]) { u64 a = dgst[0]; u64 b = dgst[1]; @@ -129,7 +129,7 @@ void sha512_transform_S (const u64 w[16], u64 dgst[8]) dgst[7] += h; } -void hmac_sha512_run_S (const u64 w1[16], const u64 ipad[8], const u64 opad[8], u64 dgst[8]) +static void hmac_sha512_run_S (const u64 w1[16], const u64 ipad[8], const u64 opad[8], u64 dgst[8]) { dgst[0] = ipad[0]; dgst[1] = ipad[1]; @@ -173,7 +173,7 @@ void hmac_sha512_run_S (const u64 w1[16], const u64 ipad[8], const u64 opad[8], sha512_transform_S (w, dgst); } -void hmac_sha512_init_S (u64 w[16], u64 ipad[8], u64 opad[8]) +static void hmac_sha512_init_S (u64 w[16], u64 ipad[8], u64 opad[8]) { w[ 0] ^= 0x3636363636363636; w[ 1] ^= 0x3636363636363636; @@ -232,7 +232,7 @@ void hmac_sha512_init_S (u64 w[16], u64 ipad[8], u64 opad[8]) sha512_transform_S (w, opad); } -void sha512_transform_V (const u64x w[16], u64x dgst[8]) +static void sha512_transform_V (const u64x w[16], u64x dgst[8]) { u64x a = dgst[0]; u64x b = dgst[1]; @@ -320,7 +320,7 @@ void sha512_transform_V (const u64x w[16], u64x dgst[8]) dgst[7] += h; } -void hmac_sha512_run_V (const u64x w1[16], const u64x ipad[8], const u64x opad[8], u64x dgst[8]) +static void hmac_sha512_run_V (const u64x w1[16], const u64x ipad[8], const u64x opad[8], u64x dgst[8]) { dgst[0] = ipad[0]; dgst[1] = ipad[1]; @@ -364,7 +364,7 @@ void hmac_sha512_run_V (const u64x w1[16], const u64x ipad[8], const u64x opad[8 sha512_transform_V (w, dgst); } -void hmac_sha512_run_V_x (const u64x ipad[8], const u64x opad[8], u64x dgst[8]) +static void hmac_sha512_run_V_x (const u64x ipad[8], const u64x opad[8], u64x dgst[8]) { u64x w[16]; @@ -417,7 +417,7 @@ void hmac_sha512_run_V_x (const u64x ipad[8], const u64x opad[8], u64x dgst[8]) sha512_transform_V (w, dgst); } -void hmac_sha512_init_V (u64x w[16], u64x ipad[8], u64x opad[8]) +static void hmac_sha512_init_V (u64x w[16], u64x ipad[8], u64x opad[8]) { w[ 0] ^= 0x3636363636363636; w[ 1] ^= 0x3636363636363636;