mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
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 <riyandhiman14@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
c398cb8eb0
commit
30fed346a3
@ -323,7 +323,8 @@ static __always_inline
|
|||||||
int crypto_aegis128_process_crypt(struct aegis_state *state,
|
int crypto_aegis128_process_crypt(struct aegis_state *state,
|
||||||
struct skcipher_walk *walk,
|
struct skcipher_walk *walk,
|
||||||
void (*crypt)(struct aegis_state *state,
|
void (*crypt)(struct aegis_state *state,
|
||||||
u8 *dst, const u8 *src,
|
u8 *dst,
|
||||||
|
const u8 *src,
|
||||||
unsigned int size))
|
unsigned int size))
|
||||||
{
|
{
|
||||||
int err = 0;
|
int err = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user