From 3d32d48568143c86b26329640ef96455bac3418c Mon Sep 17 00:00:00 2001 From: Kishore Kumar Korathaluri Date: Mon, 12 Jan 2015 09:48:41 +0530 Subject: [PATCH] xilmfs : added common namespace to all common tcl commands. Signed-off-by: Kishore Kumar Korathaluri --- lib/sw_services/xilmfs/data/xilmfs.tcl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/sw_services/xilmfs/data/xilmfs.tcl b/lib/sw_services/xilmfs/data/xilmfs.tcl index 74c8e9b9..323fa6ee 100755 --- a/lib/sw_services/xilmfs/data/xilmfs.tcl +++ b/lib/sw_services/xilmfs/data/xilmfs.tcl @@ -54,18 +54,18 @@ proc generate {lib_handle} { puts $conffile "#ifndef _MFS_CONFIG_H" puts $conffile "#define _MFS_CONFIG_H" - set need_utils [get_property CONFIG.need_utils $lib_handle] + set need_utils [common::get_property CONFIG.need_utils $lib_handle] if {$need_utils} { # tell libgen or xps that the hardware platform needs to provide stdio functions # inbyte and outbyte to support utils puts $conffile "#include " } puts $conffile "#include " - set value [get_property CONFIG.numbytes $lib_handle] + set value [common::get_property CONFIG.numbytes $lib_handle] puts $conffile "#define MFS_NUMBYTES $value" - set value [get_property CONFIG.base_address $lib_handle] + set value [common::get_property CONFIG.base_address $lib_handle] puts $conffile "#define MFS_BASE_ADDRESS $value" - set value [get_property CONFIG.init_type $lib_handle] + set value [common::get_property CONFIG.init_type $lib_handle] puts $conffile "#define MFS_INIT_TYPE $value" puts $conffile "#endif" close $conffile