[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1432586462-5792-1-git-send-email-shailendra.capricorn@gmail.com>
Date: Tue, 26 May 2015 02:11:02 +0530
From: Shailendra Verma <shailendra.capricorn@...il.com>
To: Stefan Richter <stefanr@...6.in-berlin.de>,
linux1394-devel@...ts.sourceforge.net
Cc: linux-kernel@...r.kernel.org,
Shailendra Verma <shailendra.capricorn@...il.com>
Subject: [PATCH] firewire:sbp2 - Change 1 to true for bool type variable.
The variable sbp2_param_exclusive_login is bool type.
Hence initializing with true instead of 1.
Signed-off-by: Shailendra Verma <shailendra.capricorn@...il.com>
---
drivers/firewire/sbp2.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/firewire/sbp2.c b/drivers/firewire/sbp2.c
index c22606f..6d1f8df 100644
--- a/drivers/firewire/sbp2.c
+++ b/drivers/firewire/sbp2.c
@@ -65,7 +65,7 @@
*
* Concurrent logins are useful together with cluster filesystems.
*/
-static bool sbp2_param_exclusive_login = 1;
+static bool sbp2_param_exclusive_login = true;
module_param_named(exclusive_login, sbp2_param_exclusive_login, bool, 0644);
MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device "
"(default = Y, use N for concurrent initiators)");
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists