axi_dmac: Use a more descriptive label for the store-and-forward memory size

The label for the store-and-forward memory size configuration option at the
moment is just "FIFO Size" and while the store-and-forward memory uses a
FIFO that is just a implementation detail.

Change the label to "Store-and-Forward Memory Size". This is more
descriptive as it references the function not the implementation.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
main
Lars-Peter Clausen 2018-05-30 09:32:38 +02:00 committed by Lars-Peter Clausen
parent 15b0e38e23
commit b18b16fd3a
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ set_parameter_property DMA_LENGTH_WIDTH ALLOWED_RANGES {8:32}
set_parameter_property DMA_LENGTH_WIDTH GROUP $group set_parameter_property DMA_LENGTH_WIDTH GROUP $group
add_parameter FIFO_SIZE INTEGER 4 add_parameter FIFO_SIZE INTEGER 4
set_parameter_property FIFO_SIZE DISPLAY_NAME "FIFO Size (In Bursts)" set_parameter_property FIFO_SIZE DISPLAY_NAME "Store-and-Forward Memory Size (In Bursts)"
set_parameter_property FIFO_SIZE HDL_PARAMETER true set_parameter_property FIFO_SIZE HDL_PARAMETER true
set_parameter_property FIFO_SIZE ALLOWED_RANGES {2 4 8 16 32} set_parameter_property FIFO_SIZE ALLOWED_RANGES {2 4 8 16 32}
set_parameter_property FIFO_SIZE GROUP $group set_parameter_property FIFO_SIZE GROUP $group

View File

@ -318,7 +318,7 @@ set p [ipgui::get_guiparamspec -name "FIFO_SIZE" -component $cc]
ipgui::move_param -component $cc -order 2 $p -parent $general_group ipgui::move_param -component $cc -order 2 $p -parent $general_group
set_property -dict [list \ set_property -dict [list \
"widget" "comboBox" \ "widget" "comboBox" \
"display_name" "FIFO Size (In Bursts)" \ "display_name" "Store-and-Forward Memory Size (In Bursts)" \
] $p ] $p
set p [ipgui::get_guiparamspec -name "MAX_BYTES_PER_BURST" -component $cc] set p [ipgui::get_guiparamspec -name "MAX_BYTES_PER_BURST" -component $cc]