Staging: iio: adis16209: Indent the field definitions
authorShreeya Patel <shreeya.patel23498@gmail.com>
Thu, 29 Mar 2018 09:12:02 +0000 (14:42 +0530)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Fri, 30 Mar 2018 12:50:32 +0000 (13:50 +0100)
Have indentation in field definitions to make them
clearly different from the register addresses.

Signed-off-by: Shreeya Patel <shreeya.patel23498@gmail.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/staging/iio/accel/adis16209.c

index 72a18cf..f6f60db 100644 (file)
 #define ADIS16209_STAT_REG                     0x3C
 #define  ADIS16209_STAT_ALARM2                 BIT(9)
 #define  ADIS16209_STAT_ALARM1                 BIT(8)
-#define ADIS16209_STAT_SELFTEST_FAIL_BIT       5
-#define ADIS16209_STAT_SPI_FAIL_BIT            3
-#define ADIS16209_STAT_FLASH_UPT_FAIL_BIT      2
+#define  ADIS16209_STAT_SELFTEST_FAIL_BIT      5
+#define  ADIS16209_STAT_SPI_FAIL_BIT           3
+#define  ADIS16209_STAT_FLASH_UPT_FAIL_BIT     2
 /* Power supply above 3.625 V */
-#define ADIS16209_STAT_POWER_HIGH_BIT          1
+#define  ADIS16209_STAT_POWER_HIGH_BIT         1
 /* Power supply below 3.15 V */
-#define ADIS16209_STAT_POWER_LOW_BIT           0
+#define  ADIS16209_STAT_POWER_LOW_BIT          0
 
 #define ADIS16209_CMD_REG                      0x3E
 #define  ADIS16209_CMD_SW_RESET                        BIT(7)