rt2x00: Remove unused rt2x00queue_get_queue function.
Now that all accesses to the data_queue structures is done via the specialized rt2x00queue_get_tx_queue function or via direct accesses, there is no need for the rt2x00queue_get_queue function anymore, so remove it. Signed-off-by: Gertjan van Wingerde <gwingerde@gmail.com> Acked-by: Helmut Schaa <helmut.schaa@googlemail.com> Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
a24408307e
commit
557d99a269
2 changed files with 0 additions and 27 deletions
|
@ -1082,14 +1082,6 @@ rt2x00queue_get_tx_queue(struct rt2x00_dev *rt2x00dev,
|
|||
return NULL;
|
||||
}
|
||||
|
||||
/**
|
||||
* rt2x00queue_get_queue - Convert queue index to queue pointer
|
||||
* @rt2x00dev: Pointer to &struct rt2x00_dev.
|
||||
* @queue: rt2x00 queue index (see &enum data_queue_qid).
|
||||
*/
|
||||
struct data_queue *rt2x00queue_get_queue(struct rt2x00_dev *rt2x00dev,
|
||||
const enum data_queue_qid queue);
|
||||
|
||||
/**
|
||||
* rt2x00queue_get_entry - Get queue entry where the given index points to.
|
||||
* @queue: Pointer to &struct data_queue from where we obtain the entry.
|
||||
|
|
|
@ -705,25 +705,6 @@ void rt2x00queue_for_each_entry(struct data_queue *queue,
|
|||
}
|
||||
EXPORT_SYMBOL_GPL(rt2x00queue_for_each_entry);
|
||||
|
||||
struct data_queue *rt2x00queue_get_queue(struct rt2x00_dev *rt2x00dev,
|
||||
const enum data_queue_qid queue)
|
||||
{
|
||||
if (queue == QID_RX)
|
||||
return rt2x00dev->rx;
|
||||
|
||||
if (queue < rt2x00dev->ops->tx_queues && rt2x00dev->tx)
|
||||
return &rt2x00dev->tx[queue];
|
||||
|
||||
if (queue == QID_BEACON)
|
||||
return rt2x00dev->bcn;
|
||||
|
||||
if (queue == QID_ATIM)
|
||||
return rt2x00dev->atim;
|
||||
|
||||
return NULL;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(rt2x00queue_get_queue);
|
||||
|
||||
struct queue_entry *rt2x00queue_get_entry(struct data_queue *queue,
|
||||
enum queue_index index)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue