cfg.c (1201cd22fd1f4579a888c0f7abc65627d5962f29) | cfg.c (4a9a816a4f8c79260446811bdf80615b36539949) |
---|---|
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 | 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 |
18#include "ieee802154_i.h" 19 20static struct net_device * 21ieee802154_add_iface_deprecated(struct wpan_phy *wpan_phy, 22 const char *name, int type) 23{ 24 return mac802154_add_iface(wpan_phy, name, type); 25} 26 27static void ieee802154_del_iface_deprecated(struct wpan_phy *wpan_phy, 28 struct net_device *dev) 29{ 30 mac802154_del_iface(wpan_phy, dev); 31} 32 |
|
18const struct cfg802154_ops mac802154_config_ops = { | 33const struct cfg802154_ops mac802154_config_ops = { |
34 .add_virtual_intf_deprecated = ieee802154_add_iface_deprecated, 35 .del_virtual_intf_deprecated = ieee802154_del_iface_deprecated, |
|
19}; | 36}; |