diff options
author | Ian Morris <ipm@chirality.org.uk> | 2015-08-14 22:43:38 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-08-17 14:34:48 -0700 |
commit | ec120da6f0fe59f175c2a8faa0a7700280c39644 (patch) | |
tree | 5ff166e173695df7bd00c68c033c8ff2521d24d8 | |
parent | f4a3e90ba5739cfd761b6befadae9728bd3641ed (diff) | |
download | talos-obmc-linux-ec120da6f0fe59f175c2a8faa0a7700280c39644.tar.gz talos-obmc-linux-ec120da6f0fe59f175c2a8faa0a7700280c39644.zip |
ipv6: trivial whitespace fix
Change brace placement to be in line with coding standards
Signed-off-by: Ian Morris <ipm@chirality.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ipv6/udp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index e51fc3eee6db..0aba654f5b91 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c @@ -1496,7 +1496,8 @@ int __net_init udp6_proc_init(struct net *net) return udp_proc_register(net, &udp6_seq_afinfo); } -void udp6_proc_exit(struct net *net) { +void udp6_proc_exit(struct net *net) +{ udp_proc_unregister(net, &udp6_seq_afinfo); } #endif /* CONFIG_PROC_FS */ |