summaryrefslogtreecommitdiffstats
path: root/net/mac802154
diff options
context:
space:
mode:
authorAlexander Aring <alex.aring@gmail.com>2015-06-17 09:35:18 -0400
committerMarcel Holtmann <marcel@holtmann.org>2015-06-17 10:00:40 -0400
commit5c698e8bbfaa6e26d851eeeeee09d61dfc9ff4a0 (patch)
tree36bca8468b9a42fc473363ff5c498be214ce4bc6 /net/mac802154
parent95c0aa15711e1e5fd62300a8abd244186ebf67e7 (diff)
mac802154: iface: cleanup stack variable
There is no need to init res with zero, res can be unused but then we returning zero and not res. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/mac802154')
-rw-r--r--net/mac802154/iface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac802154/iface.c b/net/mac802154/iface.c
index 0b0cccb85336..8b698246a51b 100644
--- a/net/mac802154/iface.c
+++ b/net/mac802154/iface.c
@@ -189,7 +189,7 @@ static int mac802154_slave_open(struct net_device *dev)
189{ 189{
190 struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev); 190 struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
191 struct ieee802154_local *local = sdata->local; 191 struct ieee802154_local *local = sdata->local;
192 int res = 0; 192 int res;
193 193
194 ASSERT_RTNL(); 194 ASSERT_RTNL();
195 195