Commit 3b798793 authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[PATCH] Update tlan driver to new pci api

parent e396ee6d
This diff is collapsed.
...@@ -169,15 +169,22 @@ typedef u8 TLanBuffer[TLAN_MAX_FRAME_SIZE]; ...@@ -169,15 +169,22 @@ typedef u8 TLanBuffer[TLAN_MAX_FRAME_SIZE];
typedef struct tlan_private_tag { typedef struct tlan_private_tag {
struct net_device *nextDevice; struct net_device *nextDevice;
struct pci_dev *pciDev;
void *dmaStorage; void *dmaStorage;
dma_addr_t dmaStorageDMA;
unsigned int dmaSize;
u8 *padBuffer; u8 *padBuffer;
TLanList *rxList; TLanList *rxList;
dma_addr_t rxListDMA;
u8 *rxBuffer; u8 *rxBuffer;
dma_addr_t rxBufferDMA;
u32 rxHead; u32 rxHead;
u32 rxTail; u32 rxTail;
u32 rxEocCount; u32 rxEocCount;
TLanList *txList; TLanList *txList;
dma_addr_t txListDMA;
u8 *txBuffer; u8 *txBuffer;
dma_addr_t txBufferDMA;
u32 txHead; u32 txHead;
u32 txInProgress; u32 txInProgress;
u32 txTail; u32 txTail;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment