[PATCH 0/2] Staging:iio:adc:Prefer using BIT macro

From: Bhumika Goyal
Date: Mon Feb 08 2016 - 01:49:58 EST


This patchset replaces bit shifting on 1 with the BIT(x) macro.
This was done with coccinelle:
@@ int g; @@
-(1 << g)
+BIT(g)

Bhumika Goyal (2):
Staging:iio:Prefer using BIT macro
Staging: iio: adc: Prefer using the BIT macro

drivers/staging/iio/adc/ad7280a.c | 4 ++--
drivers/staging/iio/adc/ad7816.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)

--
1.9.1