Lines Matching defs:rtl8169_private
600 struct rtl8169_private { struct
601 void __iomem *mmio_addr; /* memory map physical address */
602 struct pci_dev *pci_dev;
603 struct net_device *dev;
604 struct phy_device *phydev;
605 struct napi_struct napi;
606 enum mac_version mac_version;
607 enum rtl_dash_type dash_type;
608 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
609 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
610 u32 dirty_tx;
611 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
612 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
613 dma_addr_t TxPhyAddr;
614 dma_addr_t RxPhyAddr;
615 struct page *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
616 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
640 typedef void (*rtl_generic_fct)(struct rtl8169_private *tp); argument