Lines Matching defs:rtl8169_private
589 struct rtl8169_private { struct
590 void __iomem *mmio_addr; /* memory map physical address */
591 struct pci_dev *pci_dev;
592 struct net_device *dev;
593 struct phy_device *phydev;
594 struct napi_struct napi;
595 enum mac_version mac_version;
596 enum rtl_dash_type dash_type;
597 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
598 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
599 u32 dirty_tx;
600 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
601 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
602 dma_addr_t TxPhyAddr;
603 dma_addr_t RxPhyAddr;
604 struct page *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
605 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
606 u16 cp_cmd;
630 typedef void (*rtl_generic_fct)(struct rtl8169_private *tp); argument