It will be replaced with something like #ifdef CONFIG_MAC80211_HT_AGG /* move to Tx aggregation for a certain DA/TID. * return the starting frame's sequence number in start_seq_nums. * If aggregation can not be started on a certain TID return error, * else return success */ int (*ht_tx_agg_start)(struct ieee80211_hw *hw, const u8 *ra, u16 tid, u16 *start_seq_num); /* stop Tx aggregation for a certain DA/TID. * If aggregation can not be stopped on a certain TID return error, * else return success. generator field gives the HW an indication who * requests to stop the aggregation - recipient (0) or initiator (1) */ int (*ht_tx_agg_stop)(struct ieee80211_hw *hw, const u8 *ra, u16 tid); /* move to Rx aggregation for a certain DA/TID. * If aggregation can not be started on a certain TID return error, * else return success */ int (*ht_rx_agg_start)(struct ieee80211_hw *hw, const u8 *ra, u16 tid, u16 start_seq_num); /* stop Rx aggregation for a certain DA/TID. * If aggregation can not be stopped on a certain TID return error, * else return success. generator field gives the HW an indication who * requests to stop the aggregation - recipient (0) or initiator (1) */ int (*ht_rx_agg_stop)(struct ieee80211_hw *hw, const u8 *ra, u16 tid, int generator); #endif /* CONFIG_MAC80211_HT_AGG */ On 10/1/07, Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> wrote: > Whoever added this to include/net/mac80211.h forgot to update > the ieee80211_ops comment block. > - > To unsubscribe from this list: send the line "unsubscribe linux-wireless" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html > - To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html