Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1728229
| From | Greg KH <gregkh@linuxfoundation.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] Staging: ccree: Prefer using BIT macro. |
| Date | 2017-09-07 16:00 +0200 |
| Message-ID | <un5vA-A2-11@gated-at.bofh.it> (permalink) |
| References | <un5lT-wK-1@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Thu, Sep 07, 2017 at 07:17:09PM +0530, Srishti Sharma wrote: > Use BIT(x) instead of (1<<x), reported by checkpatch.pl. > > Signed-off-by: Srishti Sharma <srishtishar@gmail.com> > --- > drivers/staging/ccree/ssi_cipher.h | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/drivers/staging/ccree/ssi_cipher.h b/drivers/staging/ccree/ssi_cipher.h > index 296b375..6fbcf9d 100644 > --- a/drivers/staging/ccree/ssi_cipher.h > +++ b/drivers/staging/ccree/ssi_cipher.h > @@ -27,11 +27,11 @@ > #include "ssi_buffer_mgr.h" > > /* Crypto cipher flags */ > -#define CC_CRYPTO_CIPHER_KEY_KFDE0 (1 << 0) > -#define CC_CRYPTO_CIPHER_KEY_KFDE1 (1 << 1) > -#define CC_CRYPTO_CIPHER_KEY_KFDE2 (1 << 2) > -#define CC_CRYPTO_CIPHER_KEY_KFDE3 (1 << 3) > -#define CC_CRYPTO_CIPHER_DU_SIZE_512B (1 << 4) > +#define CC_CRYPTO_CIPHER_KEY_KFDE0 BIT(0) > +#define CC_CRYPTO_CIPHER_KEY_KFDE1 BIT(1) > +#define CC_CRYPTO_CIPHER_KEY_KFDE2 BIT(2) > +#define CC_CRYPTO_CIPHER_KEY_KFDE3 BIT(3) > +#define CC_CRYPTO_CIPHER_DU_SIZE_512B BIT(4) Care to use a <TAB> here as well? I know the original didn't, but the cleaned up code should. thanks, greg k-h
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH] Staging: ccree: Prefer using BIT macro. Srishti Sharma <srishtishar@gmail.com> - 2017-09-07 15:50 +0200 Re: [PATCH] Staging: ccree: Prefer using BIT macro. Greg KH <gregkh@linuxfoundation.org> - 2017-09-07 16:00 +0200
csiph-web