diff options
author | John W. Linville <linville@tuxdriver.com> | 2008-10-22 16:41:55 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-10-31 19:00:34 -0400 |
commit | 27df605ebe2c106c53957dfdaee5d948f01cfc97 (patch) | |
tree | 3f98e91643ebec86a2b07c8ed676a4aacd3c074a /drivers/net/wireless/p54/p54pci.c | |
parent | 5e73444e91889ea6c7a83bc174ef8e8b6aaeea9b (diff) |
p54: integrate parts of lmac_longbow.h and other parts of stlc45xx
This patch removes most/all? of the "magic" numbers and unknown structure
variables inside the code and replaces them with meaningful prototypes.
(Plus a one line warning fix from Larry Finger <Larry.Finger@lwfinger.net>.)
Signed-off-by: Christian Lamparter <chunkeey@web.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/p54/p54pci.c')
-rw-r--r-- | drivers/net/wireless/p54/p54pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/p54/p54pci.c b/drivers/net/wireless/p54/p54pci.c index 1bb9584f0355..3c9d030ccb8d 100644 --- a/drivers/net/wireless/p54/p54pci.c +++ b/drivers/net/wireless/p54/p54pci.c | |||
@@ -326,7 +326,7 @@ static void p54p_tx(struct ieee80211_hw *dev, struct sk_buff *skb, | |||
326 | PCI_DMA_TODEVICE); | 326 | PCI_DMA_TODEVICE); |
327 | desc = &ring_control->tx_data[i]; | 327 | desc = &ring_control->tx_data[i]; |
328 | desc->host_addr = cpu_to_le32(mapping); | 328 | desc->host_addr = cpu_to_le32(mapping); |
329 | desc->device_addr = ((struct p54_control_hdr *)skb->data)->req_id; | 329 | desc->device_addr = ((struct p54_hdr *)skb->data)->req_id; |
330 | desc->len = cpu_to_le16(skb->len); | 330 | desc->len = cpu_to_le16(skb->len); |
331 | desc->flags = 0; | 331 | desc->flags = 0; |
332 | 332 | ||