drivers:staging:iio:cdc: Style fix.
authorAnthony Brandon <anthony@amarulasolutions.com>
Mon, 23 Jan 2017 13:14:12 +0000 (14:14 +0100)
committerJonathan Cameron <jic23@kernel.org>
Sat, 28 Jan 2017 12:17:45 +0000 (12:17 +0000)
Align parameters to parentheses.

Signed-off-by: Anthony Brandon <anthony@amarulasolutions.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/staging/iio/cdc/ad7150.c

index c886751..ca72af3 100644 (file)
@@ -610,27 +610,27 @@ static int ad7150_probe(struct i2c_client *client,
 
        if (client->irq) {
                ret = devm_request_threaded_irq(&client->dev, client->irq,
-                                          NULL,
-                                          &ad7150_event_handler,
-                                          IRQF_TRIGGER_RISING |
-                                          IRQF_TRIGGER_FALLING |
-                                          IRQF_ONESHOT,
-                                          "ad7150_irq1",
-                                          indio_dev);
+                                               NULL,
+                                               &ad7150_event_handler,
+                                               IRQF_TRIGGER_RISING |
+                                               IRQF_TRIGGER_FALLING |
+                                               IRQF_ONESHOT,
+                                               "ad7150_irq1",
+                                               indio_dev);
                if (ret)
                        return ret;
        }
 
        if (client->dev.platform_data) {
                ret = devm_request_threaded_irq(&client->dev, *(unsigned int *)
-                                          client->dev.platform_data,
-                                          NULL,
-                                          &ad7150_event_handler,
-                                          IRQF_TRIGGER_RISING |
-                                          IRQF_TRIGGER_FALLING |
-                                          IRQF_ONESHOT,
-                                          "ad7150_irq2",
-                                          indio_dev);
+                                               client->dev.platform_data,
+                                               NULL,
+                                               &ad7150_event_handler,
+                                               IRQF_TRIGGER_RISING |
+                                               IRQF_TRIGGER_FALLING |
+                                               IRQF_ONESHOT,
+                                               "ad7150_irq2",
+                                               indio_dev);
                if (ret)
                        return ret;
        }