On Wed, Mar 22, 2017 at 10:12:34PM +0530, Arushi Singhal wrote:
>  /* Capacitive Channel Setup Register Bit Designations (AD7746_REG_CAP_SETUP) 
> */
> -#define AD7746_CAPSETUP_CAPEN                (1 << 7)
> -#define AD7746_CAPSETUP_CIN2         (1 << 6) /* AD7746 only */
> -#define AD7746_CAPSETUP_CAPDIFF              (1 << 5)
> -#define AD7746_CAPSETUP_CACHOP               (1 << 0)
> +#define AD7746_CAPSETUP_CAPEN                (BIT(7))
> +#define AD7746_CAPSETUP_CIN2         (BIT(6)) /* AD7746 only */
> +#define AD7746_CAPSETUP_CAPDIFF              (BIT(5))
> +#define AD7746_CAPSETUP_CACHOP               (BIT(0))

Extra parens.

regards,
dan carpenter

Reply via email to