blob: 0a08f66512b30d8120706e65060c13cde5c037c9 [file] [log] [blame]
Alexander Aring1201cd22014-11-02 04:18:36 +01001/* 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/cfg802154.h>
17
Alexander Aring4a9a8162014-11-02 04:18:38 +010018#include "ieee802154_i.h"
Alexander Aringfdd20682014-11-02 21:43:05 +010019#include "cfg.h"
Alexander Aring4a9a8162014-11-02 04:18:38 +010020
21static struct net_device *
22ieee802154_add_iface_deprecated(struct wpan_phy *wpan_phy,
23 const char *name, int type)
24{
Alexander Aring986a8ab2014-11-05 20:51:15 +010025 struct ieee802154_local *local = wpan_phy_priv(wpan_phy);
26
27 return ieee802154_if_add(local, name, NULL, type);
Alexander Aring4a9a8162014-11-02 04:18:38 +010028}
29
30static void ieee802154_del_iface_deprecated(struct wpan_phy *wpan_phy,
31 struct net_device *dev)
32{
Alexander Aringb210b182014-11-05 20:51:14 +010033 struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
34
35 ieee802154_if_remove(sdata);
Alexander Aring4a9a8162014-11-02 04:18:38 +010036}
37
Alexander Aring1201cd22014-11-02 04:18:36 +010038const struct cfg802154_ops mac802154_config_ops = {
Alexander Aring4a9a8162014-11-02 04:18:38 +010039 .add_virtual_intf_deprecated = ieee802154_add_iface_deprecated,
40 .del_virtual_intf_deprecated = ieee802154_del_iface_deprecated,
Alexander Aring1201cd22014-11-02 04:18:36 +010041};