]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
crypto: aegis128 - Fix indentation issue in crypto_aegis128_process_crypt()
authorRiyan Dhiman <riyandhiman14@gmail.com>
Tue, 3 Sep 2024 12:55:39 +0000 (18:25 +0530)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 13 Sep 2024 10:26:52 +0000 (18:26 +0800)
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 <riyandhiman14@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/aegis128-core.c

index c4f1bfa1d04fa9eb00fc55cfaa89ed0690a45607..4fdb53435827e5702ff4877dd2f2a896f96ccd03 100644 (file)
@@ -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;