staging: iio: cdc: ad7746: remove ordinary comments
authorLucas Stankus <lucas.p.stankus@gmail.com>
Sun, 23 May 2021 17:11:57 +0000 (14:11 -0300)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Thu, 3 Jun 2021 17:24:14 +0000 (18:24 +0100)
Remove ordinary comments about typical driver structure.
Also align one comment with wrong indentation.

Signed-off-by: Lucas Stankus <lucas.p.stankus@gmail.com>
Link: https://lore.kernel.org/r/e93e5efb19cee53546a339c1caf1ab344e9ff282.1621786036.git.lucas.p.stankus@gmail.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/staging/iio/cdc/ad7746.c

index c42fffa..12b2554 100644 (file)
 #define AD7746_CAPDAC_DACEN            BIT(7)
 #define AD7746_CAPDAC_DACP(x)          ((x) & 0x7F)
 
-/*
- * struct ad7746_chip_info - chip specific information
- */
-
 struct ad7746_chip_info {
        struct i2c_client *client;
        struct mutex lock; /* protect sensor state */
@@ -562,10 +558,10 @@ static int ad7746_read_raw(struct iio_dev *indio_dev,
 
                switch (chan->type) {
                case IIO_TEMP:
-               /*
-                * temperature in milli degrees Celsius
-                * T = ((*val / 2048) - 4096) * 1000
-                */
+                       /*
+                        * temperature in milli degrees Celsius
+                        * T = ((*val / 2048) - 4096) * 1000
+                        */
                        *val = (*val * 125) / 256;
                        break;
                case IIO_VOLTAGE:
@@ -667,10 +663,6 @@ static const struct iio_info ad7746_info = {
        .write_raw = ad7746_write_raw,
 };
 
-/*
- * device probe and remove
- */
-
 static int ad7746_probe(struct i2c_client *client,
                        const struct i2c_device_id *id)
 {