From: Bartosz Golaszewski Date: Mon, 7 Oct 2024 12:23:49 +0000 (+0200) Subject: mtd: rawnand: davinci: break the line correctly X-Git-Tag: v6.13-rc1~109^2^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ded621161b02a7dbee39e82863334301ffd731e5;p=thirdparty%2Flinux.git mtd: rawnand: davinci: break the line correctly 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 Signed-off-by: Miquel Raynal Link: https://lore.kernel.org/linux-mtd/20241007122350.75285-2-brgl@bgdev.pl --- diff --git a/drivers/mtd/nand/raw/davinci_nand.c b/drivers/mtd/nand/raw/davinci_nand.c index 5510b39c0b98f..6c884b59bc98f 100644 --- a/drivers/mtd/nand/raw/davinci_nand.c +++ b/drivers/mtd/nand/raw/davinci_nand.c @@ -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); }