From: Riyan Dhiman Date: Tue, 3 Sep 2024 12:55:39 +0000 (+0530) Subject: crypto: aegis128 - Fix indentation issue in crypto_aegis128_process_crypt() X-Git-Tag: v6.12-rc1~231^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=30fed346a3ffcf27da9e7a74466502116186146e;p=thirdparty%2Flinux.git crypto: aegis128 - Fix indentation issue in crypto_aegis128_process_crypt() The code in crypto_aegis128_process_crypt() had an indentation issue where spaces were used instead of tabs. This commit corrects the indentation to use tabs, adhering to the Linux kernel coding style guidelines. Issue reported by checkpatch: - ERROR: code indent should use tabs where possible No functional changes are intended. Signed-off-by: Riyan Dhiman Signed-off-by: Herbert Xu --- diff --git a/crypto/aegis128-core.c b/crypto/aegis128-core.c index c4f1bfa1d04fa..4fdb53435827e 100644 --- a/crypto/aegis128-core.c +++ b/crypto/aegis128-core.c @@ -323,8 +323,9 @@ static __always_inline int crypto_aegis128_process_crypt(struct aegis_state *state, struct skcipher_walk *walk, void (*crypt)(struct aegis_state *state, - u8 *dst, const u8 *src, - unsigned int size)) + u8 *dst, + const u8 *src, + unsigned int size)) { int err = 0;