Alexander Aring | 1201cd2 | 2014-11-02 04:18:36 +0100 | [diff] [blame] | 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/cfg802154.h> |
| 17 | |
Alexander Aring | 4a9a816 | 2014-11-02 04:18:38 +0100 | [diff] [blame] | 18 | #include "ieee802154_i.h" |
Alexander Aring | fdd2068 | 2014-11-02 21:43:05 +0100 | [diff] [blame] | 19 | #include "cfg.h" |
Alexander Aring | 4a9a816 | 2014-11-02 04:18:38 +0100 | [diff] [blame] | 20 | |
| 21 | static struct net_device * |
| 22 | ieee802154_add_iface_deprecated(struct wpan_phy *wpan_phy, |
| 23 | const char *name, int type) |
| 24 | { |
| 25 | return mac802154_add_iface(wpan_phy, name, type); |
| 26 | } |
| 27 | |
| 28 | static void ieee802154_del_iface_deprecated(struct wpan_phy *wpan_phy, |
| 29 | struct net_device *dev) |
| 30 | { |
Alexander Aring | b210b18 | 2014-11-05 20:51:14 +0100 | [diff] [blame^] | 31 | struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev); |
| 32 | |
| 33 | ieee802154_if_remove(sdata); |
Alexander Aring | 4a9a816 | 2014-11-02 04:18:38 +0100 | [diff] [blame] | 34 | } |
| 35 | |
Alexander Aring | 1201cd2 | 2014-11-02 04:18:36 +0100 | [diff] [blame] | 36 | const struct cfg802154_ops mac802154_config_ops = { |
Alexander Aring | 4a9a816 | 2014-11-02 04:18:38 +0100 | [diff] [blame] | 37 | .add_virtual_intf_deprecated = ieee802154_add_iface_deprecated, |
| 38 | .del_virtual_intf_deprecated = ieee802154_del_iface_deprecated, |
Alexander Aring | 1201cd2 | 2014-11-02 04:18:36 +0100 | [diff] [blame] | 39 | }; |