diff options
Diffstat (limited to 'drivers/net/tokenring/tms380tr.h')
-rw-r--r-- | drivers/net/tokenring/tms380tr.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/tokenring/tms380tr.h b/drivers/net/tokenring/tms380tr.h index f2c5ba0f37a5..077f568d89d1 100644 --- a/drivers/net/tokenring/tms380tr.h +++ b/drivers/net/tokenring/tms380tr.h | |||
@@ -18,7 +18,7 @@ int tms380tr_open(struct net_device *dev); | |||
18 | int tms380tr_close(struct net_device *dev); | 18 | int tms380tr_close(struct net_device *dev); |
19 | irqreturn_t tms380tr_interrupt(int irq, void *dev_id, struct pt_regs *regs); | 19 | irqreturn_t tms380tr_interrupt(int irq, void *dev_id, struct pt_regs *regs); |
20 | int tmsdev_init(struct net_device *dev, unsigned long dmalimit, | 20 | int tmsdev_init(struct net_device *dev, unsigned long dmalimit, |
21 | struct pci_dev *pdev); | 21 | struct device *pdev); |
22 | void tmsdev_term(struct net_device *dev); | 22 | void tmsdev_term(struct net_device *dev); |
23 | void tms380tr_wait(unsigned long time); | 23 | void tms380tr_wait(unsigned long time); |
24 | 24 | ||
@@ -719,7 +719,7 @@ struct s_TPL { /* Transmit Parameter List (align on even word boundaries) */ | |||
719 | struct sk_buff *Skb; | 719 | struct sk_buff *Skb; |
720 | unsigned char TPLIndex; | 720 | unsigned char TPLIndex; |
721 | volatile unsigned char BusyFlag;/* Flag: TPL busy? */ | 721 | volatile unsigned char BusyFlag;/* Flag: TPL busy? */ |
722 | dma_addr_t DMABuff; /* DMA IO bus address from pci_map */ | 722 | dma_addr_t DMABuff; /* DMA IO bus address from dma_map */ |
723 | }; | 723 | }; |
724 | 724 | ||
725 | /* ---------------------Receive Functions-------------------------------* | 725 | /* ---------------------Receive Functions-------------------------------* |
@@ -1060,7 +1060,7 @@ struct s_RPL { /* Receive Parameter List */ | |||
1060 | struct sk_buff *Skb; | 1060 | struct sk_buff *Skb; |
1061 | SKB_STAT SkbStat; | 1061 | SKB_STAT SkbStat; |
1062 | int RPLIndex; | 1062 | int RPLIndex; |
1063 | dma_addr_t DMABuff; /* DMA IO bus address from pci_map */ | 1063 | dma_addr_t DMABuff; /* DMA IO bus address from dma_map */ |
1064 | }; | 1064 | }; |
1065 | 1065 | ||
1066 | /* Information that need to be kept for each board. */ | 1066 | /* Information that need to be kept for each board. */ |
@@ -1091,7 +1091,7 @@ typedef struct net_local { | |||
1091 | RPL *RplTail; | 1091 | RPL *RplTail; |
1092 | unsigned char LocalRxBuffers[RPL_NUM][DEFAULT_PACKET_SIZE]; | 1092 | unsigned char LocalRxBuffers[RPL_NUM][DEFAULT_PACKET_SIZE]; |
1093 | 1093 | ||
1094 | struct pci_dev *pdev; | 1094 | struct device *pdev; |
1095 | int DataRate; | 1095 | int DataRate; |
1096 | unsigned char ScbInUse; | 1096 | unsigned char ScbInUse; |
1097 | unsigned short CMDqueue; | 1097 | unsigned short CMDqueue; |