Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 856690ca authored by Dan Carpenter's avatar Dan Carpenter Committed by Martin K. Petersen
Browse files

cxgbi: Typo in MODULE_PARM_DESC



The module_param is "cxgb3i_rx_credit_thres" so the MODULE_PARM_DESC()
should match that.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: default avatarMatthew R. Ochs <mrochs@linux.vnet.ibm.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 4f44f35d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -57,7 +57,7 @@ MODULE_PARM_DESC(cxgb3i_snd_win, "TCP send window in bytes (default=128KB)");


static int cxgb3i_rx_credit_thres = 10 * 1024;
static int cxgb3i_rx_credit_thres = 10 * 1024;
module_param(cxgb3i_rx_credit_thres, int, 0644);
module_param(cxgb3i_rx_credit_thres, int, 0644);
MODULE_PARM_DESC(rx_credit_thres,
MODULE_PARM_DESC(cxgb3i_rx_credit_thres,
		 "RX credits return threshold in bytes (default=10KB)");
		 "RX credits return threshold in bytes (default=10KB)");


static unsigned int cxgb3i_max_connect = 8 * 1024;
static unsigned int cxgb3i_max_connect = 8 * 1024;