diff options
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r-- | include/net/cfg80211.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 1ac5786da14b..60f7876b6da8 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h | |||
@@ -1197,6 +1197,10 @@ struct cfg80211_pmksa { | |||
1197 | * (also see nl80211.h @NL80211_ATTR_WIPHY_ANTENNA_TX). | 1197 | * (also see nl80211.h @NL80211_ATTR_WIPHY_ANTENNA_TX). |
1198 | * | 1198 | * |
1199 | * @get_antenna: Get current antenna configuration from device (tx_ant, rx_ant). | 1199 | * @get_antenna: Get current antenna configuration from device (tx_ant, rx_ant). |
1200 | * | ||
1201 | * @set_ringparam: Set tx and rx ring sizes. | ||
1202 | * | ||
1203 | * @get_ringparam: Get tx and rx ring current and maximum sizes. | ||
1200 | */ | 1204 | */ |
1201 | struct cfg80211_ops { | 1205 | struct cfg80211_ops { |
1202 | int (*suspend)(struct wiphy *wiphy); | 1206 | int (*suspend)(struct wiphy *wiphy); |
@@ -1364,6 +1368,10 @@ struct cfg80211_ops { | |||
1364 | 1368 | ||
1365 | int (*set_antenna)(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant); | 1369 | int (*set_antenna)(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant); |
1366 | int (*get_antenna)(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant); | 1370 | int (*get_antenna)(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant); |
1371 | |||
1372 | int (*set_ringparam)(struct wiphy *wiphy, u32 tx, u32 rx); | ||
1373 | void (*get_ringparam)(struct wiphy *wiphy, | ||
1374 | u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max); | ||
1367 | }; | 1375 | }; |
1368 | 1376 | ||
1369 | /* | 1377 | /* |