]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: iio: adc: ad7280a: Tab alignment
authorCristian Sicilia <sicilia.cristian@gmail.com>
Sun, 24 Mar 2019 17:23:09 +0000 (18:23 +0100)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Thu, 4 Apr 2019 19:21:09 +0000 (20:21 +0100)
Aligned some parameters.

Signed-off-by: Cristian Sicilia <sicilia.cristian@gmail.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/staging/iio/adc/ad7280a.c

index c81a8c9382d5bcffaab0b05a574005fa6cf5e1dd..229dcad537b2b2c1ee0e1e86a30cb32e43ee9ae5 100644 (file)
@@ -826,30 +826,30 @@ static irqreturn_t ad7280_event_handler(int irq, void *private)
 }
 
 static IIO_DEVICE_ATTR_NAMED(in_thresh_low_value,
-               in_voltage-voltage_thresh_low_value,
-               0644,
-               ad7280_read_channel_config,
-               ad7280_write_channel_config,
-               AD7280A_CELL_UNDERVOLTAGE);
+                            in_voltage-voltage_thresh_low_value,
+                            0644,
+                            ad7280_read_channel_config,
+                            ad7280_write_channel_config,
+                            AD7280A_CELL_UNDERVOLTAGE);
 
 static IIO_DEVICE_ATTR_NAMED(in_thresh_high_value,
-               in_voltage-voltage_thresh_high_value,
-               0644,
-               ad7280_read_channel_config,
-               ad7280_write_channel_config,
-               AD7280A_CELL_OVERVOLTAGE);
+                            in_voltage-voltage_thresh_high_value,
+                            0644,
+                            ad7280_read_channel_config,
+                            ad7280_write_channel_config,
+                            AD7280A_CELL_OVERVOLTAGE);
 
 static IIO_DEVICE_ATTR(in_temp_thresh_low_value,
-               0644,
-               ad7280_read_channel_config,
-               ad7280_write_channel_config,
-               AD7280A_AUX_ADC_UNDERVOLTAGE);
+                      0644,
+                      ad7280_read_channel_config,
+                      ad7280_write_channel_config,
+                      AD7280A_AUX_ADC_UNDERVOLTAGE);
 
 static IIO_DEVICE_ATTR(in_temp_thresh_high_value,
-               0644,
-               ad7280_read_channel_config,
-               ad7280_write_channel_config,
-               AD7280A_AUX_ADC_OVERVOLTAGE);
+                      0644,
+                      ad7280_read_channel_config,
+                      ad7280_write_channel_config,
+                      AD7280A_AUX_ADC_OVERVOLTAGE);
 
 static struct attribute *ad7280_event_attributes[] = {
        &iio_dev_attr_in_thresh_low_value.dev_attr.attr,