aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac802154/cfg.c
diff options
context:
space:
mode:
authorAlexander Aring <alex.aring@gmail.com>2014-11-05 20:51:15 +0100
committerMarcel Holtmann <marcel@holtmann.org>2014-11-05 21:53:03 +0100
commit986a8abfc51e66c96f9d39529a6ff0443fcd2591 (patch)
tree57f3640544539ae4f014603f11e773ba3d4183c6 /net/mac802154/cfg.c
parentmac802154: move interface del handling in iface (diff)
downloadlinux-dev-986a8abfc51e66c96f9d39529a6ff0443fcd2591.tar.xz
linux-dev-986a8abfc51e66c96f9d39529a6ff0443fcd2591.zip
mac802154: move interface add handling in iface
This patch moves and renames the mac802154_add_iface and mac802154_netdev_register functions into iface.c. The function mac802154_add_iface is renamed to ieee802154_if_add which is a similar naming convention like mac80211. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/mac802154/cfg.c')
-rw-r--r--net/mac802154/cfg.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/mac802154/cfg.c b/net/mac802154/cfg.c
index 3f9afad1f612..0a08f66512b3 100644
--- a/net/mac802154/cfg.c
+++ b/net/mac802154/cfg.c
@@ -22,7 +22,9 @@ static struct net_device *
ieee802154_add_iface_deprecated(struct wpan_phy *wpan_phy,
const char *name, int type)
{
- return mac802154_add_iface(wpan_phy, name, type);
+ struct ieee802154_local *local = wpan_phy_priv(wpan_phy);
+
+ return ieee802154_if_add(local, name, NULL, type);
}
static void ieee802154_del_iface_deprecated(struct wpan_phy *wpan_phy,