Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a300344a authored by Jesse Brandeburg's avatar Jesse Brandeburg Committed by Jeff Garzik
Browse files

sky2: fix simple define thinko



noticed while browsing code, apparent thinko.  compile tested only.

Signed-off-by: default avatarJesse Brandeburg <jesse.brandeburg@intel.com>
CC: Stephen Hemminger <shemminger@linux-foundation.org>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent 3273c2e8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1966,13 +1966,13 @@ struct sky2_status_le {
struct tx_ring_info {
	struct sk_buff	*skb;
	DECLARE_PCI_UNMAP_ADDR(mapaddr);
	DECLARE_PCI_UNMAP_ADDR(maplen);
	DECLARE_PCI_UNMAP_LEN(maplen);
};

struct rx_ring_info {
	struct sk_buff	*skb;
	dma_addr_t	data_addr;
	DECLARE_PCI_UNMAP_ADDR(data_size);
	DECLARE_PCI_UNMAP_LEN(data_size);
	dma_addr_t	frag_addr[ETH_JUMBO_MTU >> PAGE_SHIFT];
};