diff options
author | Eldad Zack <eldad@fogrefinery.com> | 2012-04-01 03:49:05 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-04-02 04:33:46 -0400 |
commit | 81bd60b515e5e71ecdb5176be51361dfd6830b00 (patch) | |
tree | 7e9dc820eec653b3a283b93cba4052a9226a1e73 /net | |
parent | ac3c8172ff5efa8078e5380677dff0badf70b729 (diff) |
net/ipv6/exthdrs_core.c: Checkpatch cleanups
exthdrs_core.c:113: WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable
exthdrs_core.c:114: WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable
Signed-off-by: Eldad Zack <eldad@fogrefinery.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv6/exthdrs_core.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ipv6/exthdrs_core.c b/net/ipv6/exthdrs_core.c index 72957f4a7c6c..7b1a884634d5 100644 --- a/net/ipv6/exthdrs_core.c +++ b/net/ipv6/exthdrs_core.c | |||
@@ -21,6 +21,7 @@ int ipv6_ext_hdr(u8 nexthdr) | |||
21 | (nexthdr == NEXTHDR_NONE) || | 21 | (nexthdr == NEXTHDR_NONE) || |
22 | (nexthdr == NEXTHDR_DEST); | 22 | (nexthdr == NEXTHDR_DEST); |
23 | } | 23 | } |
24 | EXPORT_SYMBOL(ipv6_ext_hdr); | ||
24 | 25 | ||
25 | /* | 26 | /* |
26 | * Skip any extension headers. This is used by the ICMP module. | 27 | * Skip any extension headers. This is used by the ICMP module. |
@@ -109,6 +110,4 @@ int ipv6_skip_exthdr(const struct sk_buff *skb, int start, u8 *nexthdrp, | |||
109 | *nexthdrp = nexthdr; | 110 | *nexthdrp = nexthdr; |
110 | return start; | 111 | return start; |
111 | } | 112 | } |
112 | |||
113 | EXPORT_SYMBOL(ipv6_ext_hdr); | ||
114 | EXPORT_SYMBOL(ipv6_skip_exthdr); | 113 | EXPORT_SYMBOL(ipv6_skip_exthdr); |