aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt2500usb.c
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-06-06 03:36:19 -0400
committerJohn W. Linville <linville@tuxdriver.com>2013-06-12 15:02:15 -0400
commit5616a6efb2a255330319f9f09f3bcf0fc4680b5f (patch)
tree6e9488684cd50f45ad3e69f17953c2fed9984375 /drivers/net/wireless/rt2x00/rt2500usb.c
parentd619c62f161a43db1f40e5039ff1285dd29b8658 (diff)
rt2x00: move extra_tx_headroom field from rt2x00_ops to rt2x00_dev
The extra_tx_headroom field of struct rt2x00_ops indicates the extra TX headroom size required for a given device. This data is redundant, the value can be computed from the desc_size and winfo_size fields of the TX queues. Move the extra_tx_headroom field to struct rt2x00_dev, compute its value in the probe routine and use the cached value in the rest of the code. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> Acked-by: Stanislaw Gruszka <sgruszka@redhat.com> Acked-by: Gertjan van Wingerde <gwingerde@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2500usb.c')
-rw-r--r--drivers/net/wireless/rt2x00/rt2500usb.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2500usb.c b/drivers/net/wireless/rt2x00/rt2500usb.c
index e5e5479bcf93..85acc79f68b8 100644
--- a/drivers/net/wireless/rt2x00/rt2500usb.c
+++ b/drivers/net/wireless/rt2x00/rt2500usb.c
@@ -1913,7 +1913,6 @@ static const struct rt2x00_ops rt2500usb_ops = {
1913 .eeprom_size = EEPROM_SIZE, 1913 .eeprom_size = EEPROM_SIZE,
1914 .rf_size = RF_SIZE, 1914 .rf_size = RF_SIZE,
1915 .tx_queues = NUM_TX_QUEUES, 1915 .tx_queues = NUM_TX_QUEUES,
1916 .extra_tx_headroom = TXD_DESC_SIZE,
1917 .queue_init = rt2500usb_queue_init, 1916 .queue_init = rt2500usb_queue_init,
1918 .lib = &rt2500usb_rt2x00_ops, 1917 .lib = &rt2500usb_rt2x00_ops,
1919 .hw = &rt2500usb_mac80211_ops, 1918 .hw = &rt2500usb_mac80211_ops,