]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: iio: adc: ad7606: Misc style fixes (no functional change)
authorStefan Popa <stefan.popa@analog.com>
Mon, 17 Dec 2018 12:23:38 +0000 (14:23 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sat, 5 Jan 2019 16:10:52 +0000 (16:10 +0000)
* Placed includes in alphabetical order
* Added brackets around num and mask through out for AD760X_CHANNEL
* Used single line comments where needed
* Removed extra lines and spaces

Signed-off-by: Stefan Popa <stefan.popa@analog.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/staging/iio/adc/ad7606.c
drivers/staging/iio/adc/ad7606.h
drivers/staging/iio/adc/ad7606_par.c
drivers/staging/iio/adc/ad7606_spi.c

index 50d88571e4ac5b3970aca1c3f3f38ff57ac816f4..ebb8de03bbce93ff032debc03448b4e1d48e764a 100644 (file)
@@ -5,25 +5,25 @@
  * Copyright 2011 Analog Devices Inc.
  */
 
-#include <linux/interrupt.h>
+#include <linux/delay.h>
 #include <linux/device.h>
-#include <linux/kernel.h>
-#include <linux/slab.h>
-#include <linux/sysfs.h>
-#include <linux/regulator/consumer.h>
 #include <linux/err.h>
 #include <linux/gpio/consumer.h>
-#include <linux/delay.h>
-#include <linux/sched.h>
+#include <linux/interrupt.h>
+#include <linux/kernel.h>
 #include <linux/module.h>
+#include <linux/regulator/consumer.h>
+#include <linux/sched.h>
+#include <linux/slab.h>
+#include <linux/sysfs.h>
 #include <linux/util_macros.h>
 
 #include <linux/iio/iio.h>
-#include <linux/iio/sysfs.h>
 #include <linux/iio/buffer.h>
-#include <linux/iio/trigger_consumer.h>
+#include <linux/iio/sysfs.h>
 #include <linux/iio/trigger.h>
 #include <linux/iio/triggered_buffer.h>
+#include <linux/iio/trigger_consumer.h>
 
 #include "ad7606.h"
 
@@ -249,8 +249,7 @@ static const struct attribute_group ad7606_attribute_group_range = {
        .attrs = ad7606_attributes_range,
 };
 
-#define AD760X_CHANNEL(num, mask)                              \
-       {                                                       \
+#define AD760X_CHANNEL(num, mask) {                            \
                .type = IIO_VOLTAGE,                            \
                .indexed = 1,                                   \
                .channel = num,                                 \
@@ -265,7 +264,7 @@ static const struct attribute_group ad7606_attribute_group_range = {
                        .storagebits = 16,                      \
                        .endianness = IIO_CPU,                  \
                },                                              \
-       }
+}
 
 #define AD7605_CHANNEL(num)    \
        AD760X_CHANNEL(num, 0)
@@ -294,9 +293,7 @@ static const struct iio_chan_spec ad7606_channels[] = {
 };
 
 static const struct ad7606_chip_info ad7606_chip_info_tbl[] = {
-       /*
-        * More devices added in future
-        */
+       /* More devices added in future */
        [ID_AD7605_4] = {
                .channels = ad7605_channels,
                .num_channels = 5,
index 9a832d208acf7a8de674ba31cc96bbaab0bc51ec..5d12410f68e14feb99f854056c8378ffeb3a3f97 100644 (file)
@@ -14,7 +14,6 @@
  * @num_channels:      number of channels
  * @has_oversampling:   whether the device has oversampling support
  */
-
 struct ad7606_chip_info {
        const struct iio_chan_spec      *channels;
        unsigned int                    num_channels;
index ae0867fd4b99255967c137d21bab1c6162ff3b35..1b08028facde8c25552a99a65489ae0671784abb 100644 (file)
@@ -26,7 +26,7 @@ static int ad7606_par16_read_block(struct device *dev,
 }
 
 static const struct ad7606_bus_ops ad7606_par16_bops = {
-       .read_block     = ad7606_par16_read_block,
+       .read_block = ad7606_par16_read_block,
 };
 
 static int ad7606_par8_read_block(struct device *dev,
@@ -41,7 +41,7 @@ static int ad7606_par8_read_block(struct device *dev,
 }
 
 static const struct ad7606_bus_ops ad7606_par8_bops = {
-       .read_block     = ad7606_par8_read_block,
+       .read_block = ad7606_par8_read_block,
 };
 
 static int ad7606_par_probe(struct platform_device *pdev)
@@ -72,22 +72,12 @@ static int ad7606_par_probe(struct platform_device *pdev)
 }
 
 static const struct platform_device_id ad7606_driver_ids[] = {
-       {
-               .name           = "ad7605-4",
-               .driver_data    = ID_AD7605_4,
-       }, {
-               .name           = "ad7606-8",
-               .driver_data    = ID_AD7606_8,
-       }, {
-               .name           = "ad7606-6",
-               .driver_data    = ID_AD7606_6,
-       }, {
-               .name           = "ad7606-4",
-               .driver_data    = ID_AD7606_4,
-       },
+       { .name = "ad7605-4", .driver_data = ID_AD7605_4, },
+       { .name = "ad7606-4", .driver_data = ID_AD7606_4, },
+       { .name = "ad7606-6", .driver_data = ID_AD7606_6, },
+       { .name = "ad7606-8", .driver_data = ID_AD7606_8, },
        { }
 };
-
 MODULE_DEVICE_TABLE(platform, ad7606_driver_ids);
 
 static const struct of_device_id ad7606_of_match[] = {
@@ -103,12 +93,11 @@ static struct platform_driver ad7606_driver = {
        .probe = ad7606_par_probe,
        .id_table = ad7606_driver_ids,
        .driver = {
-               .name    = "ad7606",
-               .pm      = AD7606_PM_OPS,
+               .name = "ad7606",
+               .pm = AD7606_PM_OPS,
                .of_match_table = ad7606_of_match,
        },
 };
-
 module_platform_driver(ad7606_driver);
 
 MODULE_AUTHOR("Michael Hennerich <michael.hennerich@analog.com>");
index a69c26537a478367a50ab4504d0237b7394d7242..4fd0ec36a086a362b4e94e4e81191e8d5aedb242 100644 (file)
@@ -36,7 +36,7 @@ static int ad7606_spi_read_block(struct device *dev,
 }
 
 static const struct ad7606_bus_ops ad7606_spi_bops = {
-       .read_block     = ad7606_spi_read_block,
+       .read_block = ad7606_spi_read_block,
 };
 
 static int ad7606_spi_probe(struct spi_device *spi)
@@ -48,14 +48,14 @@ static int ad7606_spi_probe(struct spi_device *spi)
                            &ad7606_spi_bops);
 }
 
-static const struct spi_device_id ad7606_id[] = {
-       {"ad7605-4", ID_AD7605_4},
-       {"ad7606-8", ID_AD7606_8},
-       {"ad7606-6", ID_AD7606_6},
-       {"ad7606-4", ID_AD7606_4},
+static const struct spi_device_id ad7606_id_table[] = {
+       { "ad7605-4", ID_AD7605_4 },
+       { "ad7606-4", ID_AD7606_4 },
+       { "ad7606-6", ID_AD7606_6 },
+       { "ad7606-8", ID_AD7606_8 },
        {}
 };
-MODULE_DEVICE_TABLE(spi, ad7606_id);
+MODULE_DEVICE_TABLE(spi, ad7606_id_table);
 
 static const struct of_device_id ad7606_of_match[] = {
        { .compatible = "adi,ad7605-4" },
@@ -73,7 +73,7 @@ static struct spi_driver ad7606_driver = {
                .pm = AD7606_PM_OPS,
        },
        .probe = ad7606_spi_probe,
-       .id_table = ad7606_id,
+       .id_table = ad7606_id_table,
 };
 module_spi_driver(ad7606_driver);