VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   34 Branches   58 Tags
author: Michael Tretter <m.tretter@pengutronix.de> 2021-01-21 08:16:58 +0100 committer: Stephen Boyd <sboyd@kernel.org> 2021-02-08 18:31:25 -0800 commit: cd0cefa9c96bc0e12aa33d727554bee3fe5f1244 parent: e2fb5c3b23154a69a1baf78e5ba491d4b4bd8d82
Commit Summary:
soc: xilinx: vcu: fix alignment to open parenthesis
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/drivers/soc/xilinx/xlnx_vcu.c b/drivers/soc/xilinx/xlnx_vcu.c
index 74ab305cb403..d66b1315114e 100644
--- a/drivers/soc/xilinx/xlnx_vcu.c
+++ b/drivers/soc/xilinx/xlnx_vcu.c
@@ -619,7 +619,7 @@ static int xvcu_probe(struct platform_device *pdev)
 	}
 
 	xvcu->vcu_slcr_ba = devm_ioremap(&pdev->dev, res->start,
-						 resource_size(res));
+					 resource_size(res));
 	if (!xvcu->vcu_slcr_ba) {
 		dev_err(&pdev->dev, "vcu_slcr register mapping failed.\n");
 		return -ENOMEM;