Commit 36e48f07 authored by Miquel Raynal's avatar Miquel Raynal Committed by Lee Jones

mfd: ti_am335x_tscadc: Drop extra spacing when declaring stack variables

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: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
Link: https://lore.kernel.org/r/20211015081506.933180-12-miquel.raynal@bootlin.com
parent 287ee127
...@@ -113,18 +113,18 @@ static void tscadc_idle_config(struct ti_tscadc_dev *tscadc) ...@@ -113,18 +113,18 @@ static void tscadc_idle_config(struct ti_tscadc_dev *tscadc)
static int ti_tscadc_probe(struct platform_device *pdev) static int ti_tscadc_probe(struct platform_device *pdev)
{ {
struct ti_tscadc_dev *tscadc; struct ti_tscadc_dev *tscadc;
struct resource *res; struct resource *res;
struct clk *clk; struct clk *clk;
struct device_node *node; struct device_node *node;
struct mfd_cell *cell; struct mfd_cell *cell;
struct property *prop; struct property *prop;
const __be32 *cur; const __be32 *cur;
u32 val; u32 val;
int err, ctrl; int err, ctrl;
int clock_rate; int clock_rate;
int tsc_wires = 0, adc_channels = 0, total_channels; int tsc_wires = 0, adc_channels = 0, total_channels;
int readouts = 0; int readouts = 0;
if (!pdev->dev.of_node) { if (!pdev->dev.of_node) {
dev_err(&pdev->dev, "Could not find valid DT data.\n"); dev_err(&pdev->dev, "Could not find valid DT data.\n");
...@@ -279,7 +279,7 @@ static int ti_tscadc_probe(struct platform_device *pdev) ...@@ -279,7 +279,7 @@ static int ti_tscadc_probe(struct platform_device *pdev)
static int ti_tscadc_remove(struct platform_device *pdev) 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); regmap_write(tscadc->regmap, REG_SE, 0x00);
...@@ -298,7 +298,7 @@ static int __maybe_unused ti_tscadc_can_wakeup(struct device *dev, void *data) ...@@ -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) 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); regmap_write(tscadc->regmap, REG_SE, 0x00);
if (device_for_each_child(dev, NULL, ti_tscadc_can_wakeup)) { if (device_for_each_child(dev, NULL, ti_tscadc_can_wakeup)) {
...@@ -316,7 +316,7 @@ static int __maybe_unused tscadc_suspend(struct device *dev) ...@@ -316,7 +316,7 @@ static int __maybe_unused tscadc_suspend(struct device *dev)
static int __maybe_unused tscadc_resume(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; u32 ctrl;
pm_runtime_get_sync(dev); pm_runtime_get_sync(dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment