aboutsummaryrefslogtreecommitdiffstats
path: root/module/icp/asm-x86_64/aes/aes_amd64.S
diff options
context:
space:
mode:
authorнаб <[email protected]>2021-12-12 17:34:25 +0100
committerBrian Behlendorf <[email protected]>2021-12-23 09:42:47 -0800
commit18e4f67960a7ad4f7300bd868f24c8a9f90472b2 (patch)
tree41c7f078b8906fd936152ad3ff6166885a3e918e /module/icp/asm-x86_64/aes/aes_amd64.S
parent14e4e3cb9f5f232c92b579a12f4cb0a427ed54bf (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/aes/aes_amd64.S')
-rw-r--r--module/icp/asm-x86_64/aes/aes_amd64.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/icp/asm-x86_64/aes/aes_amd64.S b/module/icp/asm-x86_64/aes/aes_amd64.S
index 9db3a3179..272720e51 100644
--- a/module/icp/asm-x86_64/aes/aes_amd64.S
+++ b/module/icp/asm-x86_64/aes/aes_amd64.S
@@ -186,15 +186,15 @@
#if defined(lint) || defined(__lint)
#include <sys/types.h>
-/* ARGSUSED */
void
aes_encrypt_amd64(const uint32_t rk[], int Nr, const uint32_t pt[4],
uint32_t ct[4]) {
+ (void) rk, (void) Nr, (void) pt, (void) ct;
}
-/* ARGSUSED */
void
aes_decrypt_amd64(const uint32_t rk[], int Nr, const uint32_t ct[4],
uint32_t pt[4]) {
+ (void) rk, (void) Nr, (void) pt, (void) ct;
}