Skip to content

Commit

Permalink
staging: iio: adc: ad7280a.c: fixed macro coding style
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Kumar Amit Mehta authored and Jonathan Cameron committed Nov 2, 2012
1 parent 0c88d23 commit fad1094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/iio/adc/ad7280a.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit fad1094

Please sign in to comment.