]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
mtd: rawnand: davinci: break the line correctly
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 7 Oct 2024 12:23:49 +0000 (14:23 +0200)
committerMiquel Raynal <miquel.raynal@bootlin.com>
Mon, 21 Oct 2024 09:24:33 +0000 (11:24 +0200)
The line in nand_davinci_get_pdata() prototype is broken in a weird and
unreadable way. Make it consistent with the rest of the code.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20241007122350.75285-2-brgl@bgdev.pl
drivers/mtd/nand/raw/davinci_nand.c

index 5510b39c0b98f7b43770d949160f6329a4b76069..6c884b59bc98f8ebb8d21062ea18155f6a8d7e62 100644 (file)
@@ -487,8 +487,8 @@ static const struct of_device_id davinci_nand_of_match[] = {
 };
 MODULE_DEVICE_TABLE(of, davinci_nand_of_match);
 
-static struct davinci_nand_pdata
-       *nand_davinci_get_pdata(struct platform_device *pdev)
+static struct davinci_nand_pdata *
+nand_davinci_get_pdata(struct platform_device *pdev)
 {
        if (!dev_get_platdata(&pdev->dev) && pdev->dev.of_node) {
                struct davinci_nand_pdata *pdata;
@@ -557,8 +557,8 @@ static struct davinci_nand_pdata
        return dev_get_platdata(&pdev->dev);
 }
 #else
-static struct davinci_nand_pdata
-       *nand_davinci_get_pdata(struct platform_device *pdev)
+static struct davinci_nand_pdata *
+nand_davinci_get_pdata(struct platform_device *pdev)
 {
        return dev_get_platdata(&pdev->dev);
 }