diff options
author | Joe Perches <joe@perches.com> | 2013-06-12 02:04:25 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-06-13 05:36:09 -0400 |
commit | fe2c6338fd2c6f383c4d4164262f35c8f3708e1f (patch) | |
tree | 491431ce95f0bda453b054748e3552fa6450c21c /net/ipv6/icmp.c | |
parent | 194f4a6df2a92c3d0bc65a85facfbc2433b25d06 (diff) |
net: Convert uses of typedef ctl_table to struct ctl_table
Reduce the uses of this unnecessary typedef.
Done via perl script:
$ git grep --name-only -w ctl_table net | \
xargs perl -p -i -e '\
sub trim { my ($local) = @_; $local =~ s/(^\s+|\s+$)//g; return $local; } \
s/\b(?<!struct\s)ctl_table\b(\s*\*\s*|\s+\w+)/"struct ctl_table " . trim($1)/ge'
Reflow the modified lines that now exceed 80 columns.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/icmp.c')
-rw-r--r-- | net/ipv6/icmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c index 4b4890bbe16d..7cfc8d284870 100644 --- a/net/ipv6/icmp.c +++ b/net/ipv6/icmp.c | |||
@@ -976,7 +976,7 @@ int icmpv6_err_convert(u8 type, u8 code, int *err) | |||
976 | EXPORT_SYMBOL(icmpv6_err_convert); | 976 | EXPORT_SYMBOL(icmpv6_err_convert); |
977 | 977 | ||
978 | #ifdef CONFIG_SYSCTL | 978 | #ifdef CONFIG_SYSCTL |
979 | ctl_table ipv6_icmp_table_template[] = { | 979 | struct ctl_table ipv6_icmp_table_template[] = { |
980 | { | 980 | { |
981 | .procname = "ratelimit", | 981 | .procname = "ratelimit", |
982 | .data = &init_net.ipv6.sysctl.icmpv6_time, | 982 | .data = &init_net.ipv6.sysctl.icmpv6_time, |