Re: [PATCH] staging: iio: cdc: ad7746: Replace bitshift by BIT

2019-04-08 Thread Joe Perches
On Wed, 2019-04-03 at 17:45 -0300, Lucas Oshiro wrote: > Replace bitshifts on lines 54, 56 and 78 of ad7746.c. checkpatch is not something that should be followed blindly. Look at the shifted blocks and determine if you think it was better before your proposed change. > diff --git

Re: [PATCH] staging: iio: cdc: ad7746: Replace bitshift by BIT

2019-04-04 Thread Dan Carpenter
On Wed, Apr 03, 2019 at 05:45:02PM -0300, Lucas Oshiro wrote: > #define AD7746_VTSETUP_VTMD_INT_TEMP (0 << 5) > -#define AD7746_VTSETUP_VTMD_EXT_TEMP (1 << 5) > +#define AD7746_VTSETUP_VTMD_EXT_TEMP BIT(5) No, the original is more readable. Otherwise you can't see that it's part of a set. Just

Re: [PATCH] staging: iio: cdc: ad7746: Replace bitshift by BIT

2019-04-04 Thread Alexandru Ardelean
On Wed, Apr 3, 2019 at 11:46 PM Lucas Oshiro wrote: > > Replace bitshifts on lines 54, 56 and 78 of ad7746.c. > Hey, This is only partially done. If doing conversions to BIT(x) macro, I would say to do them for all cases. Thanks Alex > Signed-off-by: Lucas Oshiro > --- >

[PATCH] staging: iio: cdc: ad7746: Replace bitshift by BIT

2019-04-03 Thread Lucas Oshiro
Replace bitshifts on lines 54, 56 and 78 of ad7746.c. Signed-off-by: Lucas Oshiro --- drivers/staging/iio/cdc/ad7746.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/iio/cdc/ad7746.c b/drivers/staging/iio/cdc/ad7746.c index 0eb28fea876e..ea48b14cee72