diff options
author | Daniel Baluta <dbaluta@ixiacom.com> | 2012-04-14 21:34:41 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-04-15 12:37:19 -0400 |
commit | 5e73ea1a31c3612aa6dfe44f864ca5b7b6a4cff9 (patch) | |
tree | ab5eebe93e10e7e69042b15603a5b3844c049f6b /net/ipv4/inet_hashtables.c | |
parent | 586d17c5a01bf1ae4e215adc6c48457eee5482bc (diff) |
ipv4: fix checkpatch errors
Fix checkpatch errors of the following type:
* ERROR: "foo * bar" should be "foo *bar"
* ERROR: "(foo*)" should be "(foo *)"
Signed-off-by: Daniel Baluta <dbaluta@ixiacom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/inet_hashtables.c')
-rw-r--r-- | net/ipv4/inet_hashtables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/inet_hashtables.c b/net/ipv4/inet_hashtables.c index 984ec656b03b..7880af970208 100644 --- a/net/ipv4/inet_hashtables.c +++ b/net/ipv4/inet_hashtables.c | |||
@@ -217,7 +217,7 @@ begin: | |||
217 | } | 217 | } |
218 | EXPORT_SYMBOL_GPL(__inet_lookup_listener); | 218 | EXPORT_SYMBOL_GPL(__inet_lookup_listener); |
219 | 219 | ||
220 | struct sock * __inet_lookup_established(struct net *net, | 220 | struct sock *__inet_lookup_established(struct net *net, |
221 | struct inet_hashinfo *hashinfo, | 221 | struct inet_hashinfo *hashinfo, |
222 | const __be32 saddr, const __be16 sport, | 222 | const __be32 saddr, const __be16 sport, |
223 | const __be32 daddr, const u16 hnum, | 223 | const __be32 daddr, const u16 hnum, |