aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt2x00queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00queue.h')
-rw-r--r--drivers/net/wireless/rt2x00/rt2x00queue.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00queue.h b/drivers/net/wireless/rt2x00/rt2x00queue.h
index b5e06347c8a7..47d175a13790 100644
--- a/drivers/net/wireless/rt2x00/rt2x00queue.h
+++ b/drivers/net/wireless/rt2x00/rt2x00queue.h
@@ -29,7 +29,7 @@
29#include <linux/prefetch.h> 29#include <linux/prefetch.h>
30 30
31/** 31/**
32 * DOC: Entrie frame size 32 * DOC: Entry frame size
33 * 33 *
34 * Ralink PCI devices demand the Frame size to be a multiple of 128 bytes, 34 * Ralink PCI devices demand the Frame size to be a multiple of 128 bytes,
35 * for USB devices this restriction does not apply, but the value of 35 * for USB devices this restriction does not apply, but the value of
@@ -45,13 +45,13 @@
45/** 45/**
46 * DOC: Number of entries per queue 46 * DOC: Number of entries per queue
47 * 47 *
48 * Under normal load without fragmentation 12 entries are sufficient 48 * Under normal load without fragmentation, 12 entries are sufficient
49 * without the queue being filled up to the maximum. When using fragmentation 49 * without the queue being filled up to the maximum. When using fragmentation
50 * and the queue threshold code we need to add some additional margins to 50 * and the queue threshold code, we need to add some additional margins to
51 * make sure the queue will never (or only under extreme load) fill up 51 * make sure the queue will never (or only under extreme load) fill up
52 * completely. 52 * completely.
53 * Since we don't use preallocated DMA having a large number of queue entries 53 * Since we don't use preallocated DMA, having a large number of queue entries
54 * will have only minimal impact on the memory requirements for the queue. 54 * will have minimal impact on the memory requirements for the queue.
55 */ 55 */
56#define RX_ENTRIES 24 56#define RX_ENTRIES 24
57#define TX_ENTRIES 24 57#define TX_ENTRIES 24