mfd: ti_am335x_tscadc: Drop extra spacing when declaring stack variables
authorMiquel Raynal <miquel.raynal@bootlin.com>
Fri, 15 Oct 2021 08:14:29 +0000 (10:14 +0200)
committerLee Jones <lee.jones@linaro.org>
Wed, 20 Oct 2021 16:24:34 +0000 (17:24 +0100)
Many variables will be updated (renamed, dropped, added) in the upcoming
changes, so let's simplify the style to avoid messing with spaces over
and over again.

Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Link: https://lore.kernel.org/r/20211015081506.933180-12-miquel.raynal@bootlin.com
drivers/mfd/ti_am335x_tscadc.c

index 3dfa9af..a211b35 100644 (file)
@@ -113,18 +113,18 @@ static void tscadc_idle_config(struct ti_tscadc_dev *tscadc)
 
 static int ti_tscadc_probe(struct platform_device *pdev)
 {
-       struct ti_tscadc_dev    *tscadc;
-       struct resource         *res;
-       struct clk              *clk;
-       struct device_node      *node;
-       struct mfd_cell         *cell;
-       struct property         *prop;
-       const __be32            *cur;
-       u32                     val;
-       int                     err, ctrl;
-       int                     clock_rate;
-       int                     tsc_wires = 0, adc_channels = 0, total_channels;
-       int                     readouts = 0;
+       struct ti_tscadc_dev *tscadc;
+       struct resource *res;
+       struct clk *clk;
+       struct device_node *node;
+       struct mfd_cell *cell;
+       struct property *prop;
+       const __be32 *cur;
+       u32 val;
+       int err, ctrl;
+       int clock_rate;
+       int tsc_wires = 0, adc_channels = 0, total_channels;
+       int readouts = 0;
 
        if (!pdev->dev.of_node) {
                dev_err(&pdev->dev, "Could not find valid DT data.\n");
@@ -279,7 +279,7 @@ err_disable_clk:
 
 static int ti_tscadc_remove(struct platform_device *pdev)
 {
-       struct ti_tscadc_dev    *tscadc = platform_get_drvdata(pdev);
+       struct ti_tscadc_dev *tscadc = platform_get_drvdata(pdev);
 
        regmap_write(tscadc->regmap, REG_SE, 0x00);
 
@@ -298,7 +298,7 @@ static int __maybe_unused ti_tscadc_can_wakeup(struct device *dev, void *data)
 
 static int __maybe_unused tscadc_suspend(struct device *dev)
 {
-       struct ti_tscadc_dev    *tscadc = dev_get_drvdata(dev);
+       struct ti_tscadc_dev *tscadc = dev_get_drvdata(dev);
 
        regmap_write(tscadc->regmap, REG_SE, 0x00);
        if (device_for_each_child(dev, NULL, ti_tscadc_can_wakeup)) {
@@ -316,7 +316,7 @@ static int __maybe_unused tscadc_suspend(struct device *dev)
 
 static int __maybe_unused tscadc_resume(struct device *dev)
 {
-       struct ti_tscadc_dev    *tscadc = dev_get_drvdata(dev);
+       struct ti_tscadc_dev *tscadc = dev_get_drvdata(dev);
        u32 ctrl;
 
        pm_runtime_get_sync(dev);