From 7c04f47a6b4f8f0a3d87f7c681a113b1aa8d4f3e Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Thu, 11 Feb 2010 19:27:49 +0000 Subject: [PATCH] Fixed two MODULE_PARM_DESC() clauses. git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@1497 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- srpt/src/ib_srpt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srpt/src/ib_srpt.c b/srpt/src/ib_srpt.c index f21ae8544..6af78ff13 100644 --- a/srpt/src/ib_srpt.c +++ b/srpt/src/ib_srpt.c @@ -115,12 +115,12 @@ MODULE_PARM_DESC(thread, static unsigned int srp_max_rdma_size = DEFAULT_MAX_RDMA_SIZE; module_param(srp_max_rdma_size, int, 0744); -MODULE_PARM_DESC(thread, +MODULE_PARM_DESC(srp_max_rdma_size, "Maximum size of SRP RDMA transfers for new connections."); static unsigned int srp_max_message_size = DEFAULT_MAX_MESSAGE_SIZE; module_param(srp_max_message_size, int, 0444); -MODULE_PARM_DESC(thread, +MODULE_PARM_DESC(srp_max_message_size, "Maximum size of SRP control messages in bytes."); module_param(use_port_guid_in_session_name, bool, 0444);