diff options
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00usb.h')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00usb.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00usb.h b/drivers/net/wireless/rt2x00/rt2x00usb.h index d3d3ddc40875..c2d997f67b3e 100644 --- a/drivers/net/wireless/rt2x00/rt2x00usb.h +++ b/drivers/net/wireless/rt2x00/rt2x00usb.h | |||
@@ -379,25 +379,21 @@ struct queue_entry_priv_usb_bcn { | |||
379 | 379 | ||
380 | /** | 380 | /** |
381 | * rt2x00usb_kick_tx_queue - Kick data queue | 381 | * rt2x00usb_kick_tx_queue - Kick data queue |
382 | * @rt2x00dev: Pointer to &struct rt2x00_dev | 382 | * @queue: Data queue to kick |
383 | * @qid: Data queue to kick | ||
384 | * | 383 | * |
385 | * This will walk through all entries of the queue and push all pending | 384 | * This will walk through all entries of the queue and push all pending |
386 | * frames to the hardware as a single burst. | 385 | * frames to the hardware as a single burst. |
387 | */ | 386 | */ |
388 | void rt2x00usb_kick_tx_queue(struct rt2x00_dev *rt2x00dev, | 387 | void rt2x00usb_kick_tx_queue(struct data_queue *queue); |
389 | const enum data_queue_qid qid); | ||
390 | 388 | ||
391 | /** | 389 | /** |
392 | * rt2x00usb_kill_tx_queue - Kill data queue | 390 | * rt2x00usb_kill_tx_queue - Kill data queue |
393 | * @rt2x00dev: Pointer to &struct rt2x00_dev | 391 | * @queue: Data queue to kill |
394 | * @qid: Data queue to kill | ||
395 | * | 392 | * |
396 | * This will walk through all entries of the queue and kill all | 393 | * This will walk through all entries of the queue and kill all |
397 | * previously kicked frames before they can be send. | 394 | * previously kicked frames before they can be send. |
398 | */ | 395 | */ |
399 | void rt2x00usb_kill_tx_queue(struct rt2x00_dev *rt2x00dev, | 396 | void rt2x00usb_kill_tx_queue(struct data_queue *queue); |
400 | const enum data_queue_qid qid); | ||
401 | 397 | ||
402 | /** | 398 | /** |
403 | * rt2x00usb_watchdog - Watchdog for USB communication | 399 | * rt2x00usb_watchdog - Watchdog for USB communication |