Signed-off-by: Jason Cooper <ja...@lakedaemon.net>
---
 drivers/staging/skein/skeinApi.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/skein/skeinApi.c b/drivers/staging/skein/skeinApi.c
index f0015d5b10f5..dd109bf6f7b9 100644
--- a/drivers/staging/skein/skeinApi.c
+++ b/drivers/staging/skein/skeinApi.c
@@ -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);
 
        /*
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-crypto" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to