From da70e179886637ced4dd74da0139cbaf5403e135 Mon Sep 17 00:00:00 2001 From: Radhey Shyam Pandey Date: Fri, 6 Jul 2018 10:59:04 +0530 Subject: [PATCH] axicdma: Fix gcc warning in peripheral test application Remove space between backslash and newline. Fixes below gcc warning- periph.c:99:63: warning: backslash and newline separated by space status = XAxiCdma_SimpleIntrExample(&intc, &axi_cdma_1, \ Signed-off-by: Radhey Shyam Pandey --- XilinxProcessorIPLib/drivers/axicdma/data/axicdma_tapp.tcl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/XilinxProcessorIPLib/drivers/axicdma/data/axicdma_tapp.tcl b/XilinxProcessorIPLib/drivers/axicdma/data/axicdma_tapp.tcl index 4650ae1d985..c1658e9938c 100644 --- a/XilinxProcessorIPLib/drivers/axicdma/data/axicdma_tapp.tcl +++ b/XilinxProcessorIPLib/drivers/axicdma/data/axicdma_tapp.tcl @@ -28,6 +28,7 @@ # Ver Who Date Changes # -------- ------ -------- ---------------------------------------------------- # 3.0 adk 12/10/13 Updated as per the New Tcl API's +# 4.5 rsp 07/06/18 Remove space b/w backslash and newline ############################################################################## ## @BEGIN_CHANGELOG EDK_I_SP1 @@ -283,7 +284,7 @@ proc gen_testfunc_call {swproj mhsinst} { print(\"\\r\\n Running XAxiCdma_SimpleIntrExample for ${ipname}...\\r\\n\"); - status = XAxiCdma_SimpleIntrExample(&${intcvar}, &${ipname}, \\ + status = XAxiCdma_SimpleIntrExample(&${intcvar}, &${ipname}, \\ ${deviceid}, ${intr_id}); @@ -331,7 +332,7 @@ proc gen_testfunc_call {swproj mhsinst} { print(\"\\r\\n Running XAxiCdma_SgIntrExample for ${ipname}...\\r\\n\"); - status = XAxiCdma_SgIntrExample(&${intcvar}, &${ipname}, \\ + status = XAxiCdma_SgIntrExample(&${intcvar}, &${ipname}, \\ ${deviceid}, ${intr_id});