Message ID | 477F20668A386D41ADCC57781B1F70430FE1BF2FB7@SC-VEXCH1.marvell.com (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers | show |
On Thu, 2014-06-05 at 16:16 -0700, Bing Zhao wrote: > Hi Johannes, > Amitkumar found that set_ringparam and get_ringparam are forgotten to be removed from cfg80211_ops. > > diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h > index dc93c6b..29cb4b2 100644 > --- a/include/net/cfg80211.h > +++ b/include/net/cfg80211.h > @@ -2266,10 +2266,6 @@ struct cfg80211_qos_map { > * > * @get_antenna: Get current antenna configuration from device (tx_ant, rx_ant). > * > - * @set_ringparam: Set tx and rx ring sizes. Oops, good catch, thanks! johannes -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index dc93c6b..29cb4b2 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -2266,10 +2266,6 @@ struct cfg80211_qos_map { * * @get_antenna: Get current antenna configuration from device (tx_ant, rx_ant). * - * @set_ringparam: Set tx and rx ring sizes. - * - * @get_ringparam: Get tx and rx ring current and maximum sizes. - * * @tdls_mgmt: Transmit a TDLS management frame. * @tdls_oper: Perform a high-level TDLS operation (e.g. TDLS link setup). * @@ -2493,10 +2489,6 @@ struct cfg80211_ops { int (*set_antenna)(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant); int (*get_antenna)(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant); - int (*set_ringparam)(struct wiphy *wiphy, u32 tx, u32 rx); - void (*get_ringparam)(struct wiphy *wiphy, - u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max); - int (*sched_scan_start)(struct wiphy *wiphy, struct net_device *dev, struct cfg80211_sched_scan_request *request);