diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-01-27 01:43:57 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-01-27 15:57:31 -0500 |
commit | 27d79f3b1071b2a2d58443a130e92c381c838e5d (patch) | |
tree | e8edaf10fbef83022aea486677d27ab01ae3119f /net | |
parent | c88460b778089525fbcf60b839b8db714406d119 (diff) |
net: ipv4: Use PTR_ERR_OR_ZERO
PTR_RET is deprecated. Use PTR_ERR_OR_ZERO instead. While at it
also include missing err.h header.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/ip_tunnel.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/ip_tunnel.c b/net/ipv4/ip_tunnel.c index c0e3cb72ad70..bd28f386bd02 100644 --- a/net/ipv4/ip_tunnel.c +++ b/net/ipv4/ip_tunnel.c | |||
@@ -40,6 +40,7 @@ | |||
40 | #include <linux/if_ether.h> | 40 | #include <linux/if_ether.h> |
41 | #include <linux/if_vlan.h> | 41 | #include <linux/if_vlan.h> |
42 | #include <linux/rculist.h> | 42 | #include <linux/rculist.h> |
43 | #include <linux/err.h> | ||
43 | 44 | ||
44 | #include <net/sock.h> | 45 | #include <net/sock.h> |
45 | #include <net/ip.h> | 46 | #include <net/ip.h> |
@@ -930,7 +931,7 @@ int ip_tunnel_init_net(struct net *net, int ip_tnl_net_id, | |||
930 | } | 931 | } |
931 | rtnl_unlock(); | 932 | rtnl_unlock(); |
932 | 933 | ||
933 | return PTR_RET(itn->fb_tunnel_dev); | 934 | return PTR_ERR_OR_ZERO(itn->fb_tunnel_dev); |
934 | } | 935 | } |
935 | EXPORT_SYMBOL_GPL(ip_tunnel_init_net); | 936 | EXPORT_SYMBOL_GPL(ip_tunnel_init_net); |
936 | 937 | ||