diff options
author | David S. Miller <davem@davemloft.net> | 2010-09-09 17:58:11 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-09-09 17:58:11 -0400 |
commit | cf0ac2b8a759fecbefd80f890c6dbe80ba65fd95 (patch) | |
tree | d5feaeef197dc681d1cdab2e8070ac31f0c43141 /net/rds/iw_sysctl.c | |
parent | f27e21a813e2c4ca74b30a5443602e75b146db9b (diff) | |
parent | 905d64c89e2a9d71d0606904b7c3908633db6072 (diff) |
Merge branch 'for-davem' of git://oss.oracle.com/git/agrover/linux-2.6
Diffstat (limited to 'net/rds/iw_sysctl.c')
-rw-r--r-- | net/rds/iw_sysctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rds/iw_sysctl.c b/net/rds/iw_sysctl.c index 1c4428a61a02..23e3a9a26aaf 100644 --- a/net/rds/iw_sysctl.c +++ b/net/rds/iw_sysctl.c | |||
@@ -122,10 +122,10 @@ void rds_iw_sysctl_exit(void) | |||
122 | unregister_sysctl_table(rds_iw_sysctl_hdr); | 122 | unregister_sysctl_table(rds_iw_sysctl_hdr); |
123 | } | 123 | } |
124 | 124 | ||
125 | int __init rds_iw_sysctl_init(void) | 125 | int rds_iw_sysctl_init(void) |
126 | { | 126 | { |
127 | rds_iw_sysctl_hdr = register_sysctl_paths(rds_iw_sysctl_path, rds_iw_sysctl_table); | 127 | rds_iw_sysctl_hdr = register_sysctl_paths(rds_iw_sysctl_path, rds_iw_sysctl_table); |
128 | if (rds_iw_sysctl_hdr == NULL) | 128 | if (!rds_iw_sysctl_hdr) |
129 | return -ENOMEM; | 129 | return -ENOMEM; |
130 | return 0; | 130 | return 0; |
131 | } | 131 | } |