aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net
diff options
context:
space:
mode:
authorJarek Poplawski <jarkao2@gmail.com>2010-01-31 19:19:07 -0500
committerDavid S. Miller <davem@davemloft.net>2010-02-02 18:55:43 -0500
commit0c2dc318e88100e1abdff07e8a7d60460984a2d2 (patch)
treeffd700e26685c380f8f6e183fb3f13a9dafb1a95 /drivers/net
parent9ab86bbcf8be755256f0a5e994e0b38af6b4d399 (diff)
sky2: Fix TX_MAP_PAGE misspelling
Btw of the dma-debug problem reported by Michael Breuer I spotted a tiny misspelling in TX_MAP_PAGE definition introduced by commit 6b84dacadbdc3. Signed-off-by: Jarek Poplawski <jarkao2@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/sky2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/sky2.h b/drivers/net/sky2.h
index 365d79c7d83..54cb303443e 100644
--- a/drivers/net/sky2.h
+++ b/drivers/net/sky2.h
@@ -2156,7 +2156,7 @@ struct tx_ring_info {
2156 struct sk_buff *skb; 2156 struct sk_buff *skb;
2157 unsigned long flags; 2157 unsigned long flags;
2158#define TX_MAP_SINGLE 0x0001 2158#define TX_MAP_SINGLE 0x0001
2159#define TX_MAP_PAGE 000002 2159#define TX_MAP_PAGE 0x0002
2160 DECLARE_PCI_UNMAP_ADDR(mapaddr); 2160 DECLARE_PCI_UNMAP_ADDR(mapaddr);
2161 DECLARE_PCI_UNMAP_LEN(maplen); 2161 DECLARE_PCI_UNMAP_LEN(maplen);
2162}; 2162};