From b7991306809cc538b691a2e9d34dcede9dce9648 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sun, 14 May 2017 14:55:00 +0000 Subject: [PATCH] ib_srpt: Fix a logging statement git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@7182 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- srpt/src/ib_srpt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srpt/src/ib_srpt.c b/srpt/src/ib_srpt.c index 5116b8278..c65c76b15 100644 --- a/srpt/src/ib_srpt.c +++ b/srpt/src/ib_srpt.c @@ -4663,7 +4663,7 @@ static int __init srpt_init_module(void) if (srpt_sq_size < MIN_SRPT_SQ_SIZE) { pr_err("invalid value %d for kernel module parameter srpt_sq_size -- must be at least %d.\n", - srpt_srq_size, MIN_SRPT_SQ_SIZE); + srpt_sq_size, MIN_SRPT_SQ_SIZE); goto out; }