diff mbox series

[2/3] arm64: zynqmp: Reorder parameters for zynqmp_mmio_write()

Message ID d2b68949868755827ad6e6142573dea96f17604c.1584971878.git.michal.simek@xilinx.com
State Accepted
Commit 3d037524756ef2dce6a072975d6a73a5a89d414c
Delegated to: Michal Simek
Headers show
Series arm64: zynqmp: Add support for running U-Boot in EL3 again | expand

Commit Message

Michal Simek March 23, 2020, 1:57 p.m. UTC
Parameter order is not correct based on zynqmp_mmio_write() declaration.

Fixes: be52372ff1bb ("arm64: zynqmp: Use zynqmp_mmio_read/write functions")
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
---

 board/xilinx/zynqmp/zynqmp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/board/xilinx/zynqmp/zynqmp.c b/board/xilinx/zynqmp/zynqmp.c
index eb1bc0861e2f..3c92b1a5825f 100644
--- a/board/xilinx/zynqmp/zynqmp.c
+++ b/board/xilinx/zynqmp/zynqmp.c
@@ -515,7 +515,7 @@  static int reset_reason(void)
 
 	env_set("reset_reason", reason);
 
-	ret = zynqmp_mmio_write(~0, ~0, (ulong)&crlapb_base->reset_reason);
+	ret = zynqmp_mmio_write((ulong)&crlapb_base->reset_reason, ~0, ~0);
 	if (ret)
 		return -EINVAL;