aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt2x00.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00.h')
-rw-r--r--drivers/net/wireless/rt2x00/rt2x00.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00.h b/drivers/net/wireless/rt2x00/rt2x00.h
index 49375c86c334..0751b35ef6dc 100644
--- a/drivers/net/wireless/rt2x00/rt2x00.h
+++ b/drivers/net/wireless/rt2x00/rt2x00.h
@@ -656,7 +656,6 @@ struct rt2x00lib_ops {
656struct rt2x00_ops { 656struct rt2x00_ops {
657 const char *name; 657 const char *name;
658 const unsigned int drv_data_size; 658 const unsigned int drv_data_size;
659 const unsigned int max_sta_intf;
660 const unsigned int max_ap_intf; 659 const unsigned int max_ap_intf;
661 const unsigned int eeprom_size; 660 const unsigned int eeprom_size;
662 const unsigned int rf_size; 661 const unsigned int rf_size;
@@ -742,6 +741,14 @@ enum rt2x00_capability_flags {
742}; 741};
743 742
744/* 743/*
744 * Interface combinations
745 */
746enum {
747 IF_COMB_AP = 0,
748 NUM_IF_COMB,
749};
750
751/*
745 * rt2x00 device structure. 752 * rt2x00 device structure.
746 */ 753 */
747struct rt2x00_dev { 754struct rt2x00_dev {
@@ -868,6 +875,12 @@ struct rt2x00_dev {
868 unsigned int intf_beaconing; 875 unsigned int intf_beaconing;
869 876
870 /* 877 /*
878 * Interface combinations
879 */
880 struct ieee80211_iface_limit if_limits_ap;
881 struct ieee80211_iface_combination if_combinations[NUM_IF_COMB];
882
883 /*
871 * Link quality 884 * Link quality
872 */ 885 */
873 struct link link; 886 struct link link;