diff options
author | наб <[email protected]> | 2021-12-12 17:34:25 +0100 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2021-12-23 09:42:47 -0800 |
commit | 18e4f67960a7ad4f7300bd868f24c8a9f90472b2 (patch) | |
tree | 41c7f078b8906fd936152ad3ff6166885a3e918e /module/icp/asm-x86_64/modes | |
parent | 14e4e3cb9f5f232c92b579a12f4cb0a427ed54bf (diff) |
module: icp: fix unused, remove argsused
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Ahelenia Ziemiańska <[email protected]>
Closes #12844
Diffstat (limited to 'module/icp/asm-x86_64/modes')
-rw-r--r-- | module/icp/asm-x86_64/modes/gcm_pclmulqdq.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/icp/asm-x86_64/modes/gcm_pclmulqdq.S b/module/icp/asm-x86_64/modes/gcm_pclmulqdq.S index 59edc4c8d..0e1e04b78 100644 --- a/module/icp/asm-x86_64/modes/gcm_pclmulqdq.S +++ b/module/icp/asm-x86_64/modes/gcm_pclmulqdq.S @@ -85,9 +85,9 @@ #include <sys/types.h> -/* ARGSUSED */ void gcm_mul_pclmulqdq(uint64_t *x_in, uint64_t *y, uint64_t *res) { + (void) x_in, (void) y, (void) res; } #elif defined(HAVE_PCLMULQDQ) /* guard by instruction set */ |