Commit fad10945 authored by Kumar Amit Mehta's avatar Kumar Amit Mehta Committed by Jonathan Cameron
Browse files

staging: iio: adc: ad7280a.c: fixed macro coding style



remove unnecessary semicolon from the macro definition

Signed-off-by: default avatarKumar Amit Mehta <gmate.amit@gmail.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent 0c88d23c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;