mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 11:36:46 +07:00
staging: crypto: skein: remove braces from single-statement block
Signed-off-by: Jason Cooper <jason@lakedaemon.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
906b492e77
commit
7584a87871
@ -188,9 +188,9 @@ int skeinUpdateBits(struct skein_ctx *ctx, const u8 *msg,
|
||||
msgBitCnt == 0, SKEIN_FAIL);
|
||||
|
||||
/* if number of bits is a multiple of bytes - that's easy */
|
||||
if ((msgBitCnt & 0x7) == 0) {
|
||||
if ((msgBitCnt & 0x7) == 0)
|
||||
return skeinUpdate(ctx, msg, msgBitCnt >> 3);
|
||||
}
|
||||
|
||||
skeinUpdate(ctx, msg, (msgBitCnt >> 3) + 1);
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user