From 046413f7f4ab4b1c3b0441343eaa4c2cdf1b81df Mon Sep 17 00:00:00 2001 From: Kishore Kumar Korathaluri Date: Fri, 9 Jan 2015 16:20:40 +0530 Subject: [PATCH] scuwdt : added common namespace to all common tcl commands. Signed-off-by: Kishore Kumar Korathaluri --- XilinxProcessorIPLib/drivers/scuwdt/data/scuwdt_tapp.tcl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/XilinxProcessorIPLib/drivers/scuwdt/data/scuwdt_tapp.tcl b/XilinxProcessorIPLib/drivers/scuwdt/data/scuwdt_tapp.tcl index 2659c15e..43178339 100755 --- a/XilinxProcessorIPLib/drivers/scuwdt/data/scuwdt_tapp.tcl +++ b/XilinxProcessorIPLib/drivers/scuwdt/data/scuwdt_tapp.tcl @@ -82,7 +82,7 @@ proc gen_init_code {swproj mhsinst} { } if {$swproj == 1} { - set ipname [get_property NAME $mhsinst] + set ipname [common::get_property NAME $mhsinst] set decl " static XScuWdt ${ipname};" set inc_file_lines $decl return $inc_file_lines @@ -97,9 +97,9 @@ proc gen_testfunc_call {swproj mhsinst} { return "" } - set ipname [get_property NAME $mhsinst] + set ipname [common::get_property NAME $mhsinst] set deviceid [::hsi::utils::get_ip_param_name $mhsinst "DEVICE_ID"] - set stdout [get_property CONFIG.STDOUT [hsi::get_os]] + set stdout [common::get_property CONFIG.STDOUT [hsi::get_os]] if { $stdout == "" || $stdout == "none" } { set hasStdout 0 } else {