aboutsummaryrefslogtreecommitdiffstats
path: root/net/phonet
diff options
context:
space:
mode:
authorRémi Denis-Courmont <remi.denis-courmont@nokia.com>2009-11-02 17:41:28 -0500
committerDavid S. Miller <davem@davemloft.net>2009-11-04 08:06:24 -0500
commit4b7673a04a16f1d8faf1e367ae28a6ee1671843d (patch)
tree3abd280daad1126007fa7d75d0b69b86ea3b8d60 /net/phonet
parentdf7641af498c1575f5e9719cb391a1fa8159db1b (diff)
Phonet: remove tautologies
These checks don't make sense anymore since rtnl_notify() cannot fail. Signed-off-by: Rémi Denis-Courmont <remi.denis-courmont@nokia.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/phonet')
-rw-r--r--net/phonet/pn_netlink.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/net/phonet/pn_netlink.c b/net/phonet/pn_netlink.c
index d8f5d3fb9ee2..609e509b369b 100644
--- a/net/phonet/pn_netlink.c
+++ b/net/phonet/pn_netlink.c
@@ -53,8 +53,7 @@ void phonet_address_notify(int event, struct net_device *dev, u8 addr)
53 RTNLGRP_PHONET_IFADDR, NULL, GFP_KERNEL); 53 RTNLGRP_PHONET_IFADDR, NULL, GFP_KERNEL);
54 return; 54 return;
55errout: 55errout:
56 if (err < 0) 56 rtnl_set_sk_err(dev_net(dev), RTNLGRP_PHONET_IFADDR, err);
57 rtnl_set_sk_err(dev_net(dev), RTNLGRP_PHONET_IFADDR, err);
58} 57}
59 58
60static const struct nla_policy ifa_phonet_policy[IFA_MAX+1] = { 59static const struct nla_policy ifa_phonet_policy[IFA_MAX+1] = {
@@ -212,8 +211,7 @@ void rtm_phonet_notify(int event, struct net_device *dev, u8 dst)
212 RTNLGRP_PHONET_ROUTE, NULL, GFP_KERNEL); 211 RTNLGRP_PHONET_ROUTE, NULL, GFP_KERNEL);
213 return; 212 return;
214errout: 213errout:
215 if (err < 0) 214 rtnl_set_sk_err(dev_net(dev), RTNLGRP_PHONET_ROUTE, err);
216 rtnl_set_sk_err(dev_net(dev), RTNLGRP_PHONET_ROUTE, err);
217} 215}
218 216
219static const struct nla_policy rtm_phonet_policy[RTA_MAX+1] = { 217static const struct nla_policy rtm_phonet_policy[RTA_MAX+1] = {