[U-Boot] [PATCH] fpga: zynqmp: Fix second local variable declaration
Michal Simek
michal.simek at xilinx.com
Wed Sep 11 08:44:55 UTC 2019
No reason to define new_buf again.
Signed-off-by: Michal Simek <michal.simek at xilinx.com>
---
drivers/fpga/zynqmppl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/fpga/zynqmppl.c b/drivers/fpga/zynqmppl.c
index 22bfdd8dce61..f6d9d50ef15f 100644
--- a/drivers/fpga/zynqmppl.c
+++ b/drivers/fpga/zynqmppl.c
@@ -153,7 +153,7 @@ static ulong zynqmp_align_dma_buffer(u32 *buf, u32 len, u32 swap)
} else if ((swap != SWAP_DONE) &&
(zynqmp_pmufw_version() <= PMUFW_V1_0)) {
/* For bitstream which are aligned */
- u32 *new_buf = (u32 *)buf;
+ new_buf = buf;
printf("%s: Bitstream is not swapped(%d) - swap it\n", __func__,
swap);
--
2.17.1
More information about the U-Boot
mailing list