aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/ccids/ccid2.c
diff options
context:
space:
mode:
authorGerrit Renker <[email protected]>2007-10-04 21:39:53 +0000
committerDavid S. Miller <[email protected]>2007-10-10 23:54:32 +0000
commit042d18f9f39a51716683b4e156fbee689314bb22 (patch)
tree63038a347f9a9321c5c671cff606b71186b5f967 /net/dccp/ccids/ccid2.c
parent[DCCP]: Add socket option to query the current MPS (diff)
downloadkernel-042d18f9f39a51716683b4e156fbee689314bb22.tar.gz
kernel-042d18f9f39a51716683b4e156fbee689314bb22.zip
[DCCP]: Make all `debug' parameters bool
This just sets the parameter to bool, since debugging messages are either on or off. Signed-off-by: Gerrit Renker <[email protected]> Signed-off-by: Ian McDonald <[email protected]> Signed-off-by: Arnaldo Carvalho de Melo <[email protected]> Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/dccp/ccids/ccid2.c')
-rw-r--r--net/dccp/ccids/ccid2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/ccids/ccid2.c b/net/dccp/ccids/ccid2.c
index d29b88fe723c..c199f34c1940 100644
--- a/net/dccp/ccids/ccid2.c
+++ b/net/dccp/ccids/ccid2.c
@@ -835,7 +835,7 @@ static struct ccid_operations ccid2 = {
};
#ifdef CONFIG_IP_DCCP_CCID2_DEBUG
-module_param(ccid2_debug, int, 0444);
+module_param(ccid2_debug, bool, 0444);
MODULE_PARM_DESC(ccid2_debug, "Enable debug messages");
#endif