From: Gilad Ben-Yossef Date: Sun, 4 Jun 2017 08:02:22 +0000 (+0300) Subject: staging: ccree: replace bit shift with BIT macro X-Git-Tag: v4.13-rc1~184^2~187 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=6562e7db139f48d41d15fd2c3afb06017d6d8f97;hp=ed5210cb07de90b8dc31a420466847755331536b;p=karo-tx-linux.git staging: ccree: replace bit shift with BIT macro CC_CTX_SIZE was being defined using a hand rolled bit shift operation. Replace with use of BIT macro. Signed-off-by: Gilad Ben-Yossef Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ccree/cc_crypto_ctx.h b/drivers/staging/ccree/cc_crypto_ctx.h index 1fc68defc59c..20f3f9fa0b56 100644 --- a/drivers/staging/ccree/cc_crypto_ctx.h +++ b/drivers/staging/ccree/cc_crypto_ctx.h @@ -27,7 +27,7 @@ #define CC_CTX_SIZE_LOG2 7 #endif #endif -#define CC_CTX_SIZE (1 << CC_CTX_SIZE_LOG2) +#define CC_CTX_SIZE BIT(CC_CTX_SIZE_LOG2) #define CC_DRV_CTX_SIZE_WORDS (CC_CTX_SIZE >> 2) #define CC_DRV_DES_IV_SIZE 8