Merge branch 'for-linville' of git://github.com/kvalo/ath
[deliverable/linux.git] / net / mac802154 / cfg.c
1 /* This program is free software; you can redistribute it and/or modify
2 * it under the terms of the GNU General Public License version 2
3 * as published by the Free Software Foundation.
4 *
5 * This program is distributed in the hope that it will be useful,
6 * but WITHOUT ANY WARRANTY; without even the implied warranty of
7 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
8 * GNU General Public License for more details.
9 *
10 * Authors:
11 * Alexander Aring <aar@pengutronix.de>
12 *
13 * Based on: net/mac80211/cfg.c
14 */
15
16 #include <net/rtnetlink.h>
17 #include <net/cfg802154.h>
18
19 #include "ieee802154_i.h"
20 #include "cfg.h"
21
22 static struct net_device *
23 ieee802154_add_iface_deprecated(struct wpan_phy *wpan_phy,
24 const char *name, int type)
25 {
26 struct ieee802154_local *local = wpan_phy_priv(wpan_phy);
27 struct net_device *dev;
28
29 rtnl_lock();
30 dev = ieee802154_if_add(local, name, NULL, type);
31 rtnl_unlock();
32
33 return dev;
34 }
35
36 static void ieee802154_del_iface_deprecated(struct wpan_phy *wpan_phy,
37 struct net_device *dev)
38 {
39 struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
40
41 ieee802154_if_remove(sdata);
42 }
43
44 const struct cfg802154_ops mac802154_config_ops = {
45 .add_virtual_intf_deprecated = ieee802154_add_iface_deprecated,
46 .del_virtual_intf_deprecated = ieee802154_del_iface_deprecated,
47 };
This page took 0.033031 seconds and 6 git commands to generate.