hv: treewide: fix 'Function prototype/defn param type mismatch'

Fix the parameter type mismatch between API declaration and definition.

Tracked-On: #861
Signed-off-by: Shiqing Gao <shiqing.gao@intel.com>
Acked-by: Anthony Xu <anthony.xu@intel.com>
This commit is contained in:
Shiqing Gao
2018-08-20 15:32:14 +08:00
committed by lijinxia
parent 752e311e11
commit 7a4dcfcc1a
6 changed files with 19 additions and 20 deletions

View File

@@ -38,7 +38,7 @@
*/
int hkdf_sha256(uint8_t *out_key, size_t out_len,
const uint8_t *secret, size_t secret_len,
const uint8_t *salt, size_t salt_len,
const uint8_t *info, size_t info_len);
__unused const uint8_t *salt, __unused size_t salt_len,
__unused const uint8_t *info, __unused size_t info_len);
#endif /* HKDF_H */