diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-09-27 09:17:51 +0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-29 05:01:07 +0400 |
commit | fd6832220974809141b3981e380b78690bba8911 (patch) | |
tree | 60fcf8bb0912b3b2eb91836540fdbb83265ef8e4 /net/ipv4/fib_frontend.c | |
parent | e4883014f48f8c17c17a2526cb5cb6e17c5f94e7 (diff) | |
download | linux-fd6832220974809141b3981e380b78690bba8911.tar.xz |
[IPV4]: inet_addr_type() annotations
argument and inferred net-endian variables in callers annotated.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/fib_frontend.c')
-rw-r--r-- | net/ipv4/fib_frontend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/fib_frontend.c b/net/ipv4/fib_frontend.c index c0bd2f122da2..34dc640478a0 100644 --- a/net/ipv4/fib_frontend.c +++ b/net/ipv4/fib_frontend.c @@ -146,7 +146,7 @@ out: return dev; } -unsigned inet_addr_type(u32 addr) +unsigned inet_addr_type(__be32 addr) { struct flowi fl = { .nl_u = { .ip4_u = { .daddr = addr } } }; struct fib_result res; |