]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
mfd: ti_am335x_tscadc: Fix style
authorMiquel Raynal <miquel.raynal@bootlin.com>
Fri, 15 Oct 2021 08:14:28 +0000 (10:14 +0200)
committerLee Jones <lee.jones@linaro.org>
Wed, 20 Oct 2021 16:13:01 +0000 (17:13 +0100)
These are mostly deffects reported by checkpatch.pl.

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-11-miquel.raynal@bootlin.com
drivers/mfd/ti_am335x_tscadc.c

index 82ace1cd6d2e1319913a1519709b070823485a1a..00428d12e6b8308041ab2d20058ee65a7768422d 100644 (file)
@@ -141,7 +141,7 @@ static      int ti_tscadc_probe(struct platform_device *pdev)
                adc_channels++;
                if (val > 7) {
                        dev_err(&pdev->dev, " PIN numbers are 0..7 (not %d)\n",
-                                       val);
+                               val);
                        of_node_put(node);
                        return -EINVAL;
                }
@@ -154,6 +154,7 @@ static      int ti_tscadc_probe(struct platform_device *pdev)
                dev_err(&pdev->dev, "Number of i/p channels more than 8\n");
                return -EINVAL;
        }
+
        if (total_channels == 0) {
                dev_err(&pdev->dev, "Need atleast one channel.\n");
                return -EINVAL;
@@ -184,7 +185,8 @@ static      int ti_tscadc_probe(struct platform_device *pdev)
 
        tscadc->tscadc_phys_base = res->start;
        tscadc->regmap = devm_regmap_init_mmio(&pdev->dev,
-                       tscadc->tscadc_base, &tscadc_regmap_config);
+                                              tscadc->tscadc_base,
+                                              &tscadc_regmap_config);
        if (IS_ERR(tscadc->regmap)) {
                dev_err(&pdev->dev, "regmap init failed\n");
                err = PTR_ERR(tscadc->regmap);