diff options
author | Wade Fife <wade.fife@ettus.com> | 2020-04-29 18:38:47 -0500 |
---|---|---|
committer | Wade Fife <wade.fife@ettus.com> | 2020-04-30 08:57:22 -0500 |
commit | 3c2f8afcba9a1b3429242b8dbf7d1f8bacc2a73e (patch) | |
tree | 71a6b7a63e01922db4d4c75b6b44ad1c6f0e9b08 /host/utils | |
parent | 8d6401e55886b6be391730f6eb63e941644cb2e3 (diff) | |
download | uhd-3c2f8afcba9a1b3429242b8dbf7d1f8bacc2a73e.tar.gz uhd-3c2f8afcba9a1b3429242b8dbf7d1f8bacc2a73e.tar.bz2 uhd-3c2f8afcba9a1b3429242b8dbf7d1f8bacc2a73e.zip |
utils: Remove trailing white space from mako templates
Diffstat (limited to 'host/utils')
-rw-r--r-- | host/utils/rfnoc_blocktool/templates/Makefile | 2 | ||||
-rw-r--r-- | host/utils/rfnoc_blocktool/templates/noc_shell_template.v.mako | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/host/utils/rfnoc_blocktool/templates/Makefile b/host/utils/rfnoc_blocktool/templates/Makefile index d56bcd9fb..55b02790e 100644 --- a/host/utils/rfnoc_blocktool/templates/Makefile +++ b/host/utils/rfnoc_blocktool/templates/Makefile @@ -19,7 +19,7 @@ include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- # Design Specific #------------------------------------------------- -# Include makefiles and sources for the DUT and its +# Include makefiles and sources for the DUT and its # dependencies. include $(BASE_DIR)/../lib/rfnoc/core/Makefile.srcs include $(BASE_DIR)/../lib/rfnoc/utils/Makefile.srcs diff --git a/host/utils/rfnoc_blocktool/templates/noc_shell_template.v.mako b/host/utils/rfnoc_blocktool/templates/noc_shell_template.v.mako index 3c623f08c..3181be10f 100644 --- a/host/utils/rfnoc_blocktool/templates/noc_shell_template.v.mako +++ b/host/utils/rfnoc_blocktool/templates/noc_shell_template.v.mako @@ -9,7 +9,7 @@ import math // // Module: noc_shell_${config['module_name']} // -// Description: +// Description: // // This is a tool-generated NoC-shell for the ${config['module_name']} block. // See the RFNoC specification for more information about NoC shells. @@ -199,12 +199,12 @@ module noc_shell_${config['module_name']} #( %elif config['data']['fpga_iface'] == "axis_chdr": assign axis_chdr_clk = ${config['data']['clk_domain']}_clk; assign axis_chdr_rst = ${config['data']['clk_domain']}_rst; - + <%include file="/modules/axis_chdr_modules_template.mako"/>\ %elif config['data']['fpga_iface'] == "axis_data": assign axis_data_clk = ${config['data']['clk_domain']}_clk; assign axis_data_rst = ${config['data']['clk_domain']}_rst; - + <%include file="/modules/axis_data_modules_template.mako"/>\ %endif endmodule // noc_shell_${config['module_name']} |