summaryrefslogtreecommitdiff
path: root/net/mac802154/iface.c
diff options
context:
space:
mode:
authorAlexander Aring <alex.aring@gmail.com>2014-11-17 07:20:50 (GMT)
committerMarcel Holtmann <marcel@holtmann.org>2014-11-17 08:49:16 (GMT)
commit133d3f31729a62908ab98d0b6562cc1a35d3dc39 (patch)
tree2c2b9df4cf08efdf44d79d6b52350f8c7cd75229 /net/mac802154/iface.c
parent944742a36d784c2a36a141ac10ba5168b0313cec (diff)
downloadlinux-133d3f31729a62908ab98d0b6562cc1a35d3dc39.tar.xz
mac802154: remove wpan_dev parameter in if_add
This parameter was grabbed from wireless implementation with the identically wireless dev struct. We don't need this right now and so we remove it. Maybe we will add it later again if we found any real reason to have such parameter. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/mac802154/iface.c')
-rw-r--r--net/mac802154/iface.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/net/mac802154/iface.c b/net/mac802154/iface.c
index cc992e8..ba63ac9 100644
--- a/net/mac802154/iface.c
+++ b/net/mac802154/iface.c
@@ -458,7 +458,7 @@ ieee802154_setup_sdata(struct ieee802154_sub_if_data *sdata,
struct net_device *
ieee802154_if_add(struct ieee802154_local *local, const char *name,
- struct wpan_dev **new_wpan_dev, enum nl802154_iftype type)
+ enum nl802154_iftype type)
{
struct net_device *ndev = NULL;
struct ieee802154_sub_if_data *sdata = NULL;
@@ -516,9 +516,6 @@ ieee802154_if_add(struct ieee802154_local *local, const char *name,
list_add_tail_rcu(&sdata->list, &local->interfaces);
mutex_unlock(&local->iflist_mtx);
- if (new_wpan_dev)
- *new_wpan_dev = &sdata->wpan_dev;
-
return ndev;
err: