From: Kumar Amit Mehta Date: Fri, 2 Nov 2012 07:28:00 +0000 (+0000) Subject: staging: iio: adc: ad7280a.c: fixed macro coding style X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=fad109452e0562e896ee0ede27552931c761b0ad;p=deliverable%2Flinux.git staging: iio: adc: ad7280a.c: fixed macro coding style remove unnecessary semicolon from the macro definition Signed-off-by: Kumar Amit Mehta Signed-off-by: Jonathan Cameron --- diff --git a/drivers/staging/iio/adc/ad7280a.c b/drivers/staging/iio/adc/ad7280a.c index cfc39a703126..e7cb3b2fe67f 100644 --- a/drivers/staging/iio/adc/ad7280a.c +++ b/drivers/staging/iio/adc/ad7280a.c @@ -117,7 +117,7 @@ */ #define POLYNOM 0x2F #define POLYNOM_ORDER 8 -#define HIGHBIT 1 << (POLYNOM_ORDER - 1); +#define HIGHBIT (1 << (POLYNOM_ORDER - 1)) struct ad7280_state { struct spi_device *spi;