From ef79fd9b958f1da37a4ad6b55d942151d0b20d5a Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Fri, 30 Oct 2020 01:44:29 +0700 Subject: [PATCH] vty: fix documentation for 'rx-sps (1|4)' and 'tx-sps (1|4)' Change-Id: I70d9b16fd2b1c2cbaafc978724369cd2c9679cbd --- CommonLibs/trx_vty.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CommonLibs/trx_vty.c b/CommonLibs/trx_vty.c index 7c568f66..57b9fe29 100644 --- a/CommonLibs/trx_vty.c +++ b/CommonLibs/trx_vty.c @@ -162,7 +162,9 @@ DEFUN(cfg_dev_args, cfg_dev_args_cmd, DEFUN(cfg_tx_sps, cfg_tx_sps_cmd, "tx-sps (1|4)", "Set the Tx Samples-per-Symbol\n" - "Tx Samples-per-Symbol\n") + "Tx Samples-per-Symbol\n" + "1 Sample-per-Symbol\n" + "4 Samples-per-Symbol\n") { struct trx_ctx *trx = trx_from_vty(vty); @@ -174,7 +176,9 @@ DEFUN(cfg_tx_sps, cfg_tx_sps_cmd, DEFUN(cfg_rx_sps, cfg_rx_sps_cmd, "rx-sps (1|4)", "Set the Rx Samples-per-Symbol\n" - "Rx Samples-per-Symbol\n") + "Rx Samples-per-Symbol\n" + "1 Sample-per-Symbol\n" + "4 Samples-per-Symbol\n") { struct trx_ctx *trx = trx_from_vty(vty);