diff options
author | Ben Greear <greearb@candelatech.com> | 2014-10-22 12:22:59 -0700 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2014-10-24 10:20:02 +0200 |
commit | 8cdd9e1c37dd888894922b8209d5fc8055cfde52 (patch) | |
tree | b05f058bf0334db2f832a7b7080a08f811cdfbf4 /drivers/net/wireless/mac80211_hwsim.h | |
parent | 2155c3f82327bddd092bd704ebaff79c0a2dfb9c (diff) | |
download | talos-obmc-linux-8cdd9e1c37dd888894922b8209d5fc8055cfde52.tar.gz talos-obmc-linux-8cdd9e1c37dd888894922b8209d5fc8055cfde52.zip |
mac80211-hwsim: support destroying radio by name
It is not always convenient to have to know the device-id,
so allow deleting by name as well.
Signed-off-by: Ben Greear <greearb@candelatech.com>
[use wiphy_name() instead of dev_name()]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'drivers/net/wireless/mac80211_hwsim.h')
-rw-r--r-- | drivers/net/wireless/mac80211_hwsim.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/mac80211_hwsim.h b/drivers/net/wireless/mac80211_hwsim.h index b96d8670a703..98c69984878d 100644 --- a/drivers/net/wireless/mac80211_hwsim.h +++ b/drivers/net/wireless/mac80211_hwsim.h @@ -113,6 +113,7 @@ enum { * single channel is supported * @HWSIM_ATTR_DESTROY_RADIO_ON_CLOSE: used with the %HWSIM_CMD_CREATE_RADIO * command to force radio removal when process that created the radio dies + * @HWSIM_ATTR_RADIO_NAME: Name of radio, e.g. phy666 * @__HWSIM_ATTR_MAX: enum limit */ @@ -135,6 +136,7 @@ enum { HWSIM_ATTR_SUPPORT_P2P_DEVICE, HWSIM_ATTR_USE_CHANCTX, HWSIM_ATTR_DESTROY_RADIO_ON_CLOSE, + HWSIM_ATTR_RADIO_NAME, __HWSIM_ATTR_MAX, }; #define HWSIM_ATTR_MAX (__HWSIM_ATTR_MAX - 1) |