staging: iio: adc: ad7280a.c: fixed macro coding style
authorKumar Amit Mehta <gmate.amit@gmail.com>
Fri, 2 Nov 2012 07:28:00 +0000 (07:28 +0000)
committerJonathan Cameron <jic23@kernel.org>
Fri, 2 Nov 2012 09:30:19 +0000 (09:30 +0000)
remove unnecessary semicolon from the macro definition

Signed-off-by: Kumar Amit Mehta <gmate.amit@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/staging/iio/adc/ad7280a.c

index cfc39a70312683919630d4839b39e99bbe50b211..e7cb3b2fe67f69711bf931eb95020b243ff015f2 100644 (file)
  */
 #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;