Lines Matching defs:rtl8169_private
698 struct rtl8169_private { struct
699 void __iomem *mmio_addr; /* memory map physical address */
700 struct pci_dev *pci_dev;
701 struct net_device *dev;
702 struct phy_device *phydev;
703 struct napi_struct napi;
704 enum mac_version mac_version;
705 enum rtl_dash_type dash_type;
706 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
707 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
708 u32 dirty_tx;
709 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
710 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
711 dma_addr_t TxPhyAddr;
712 dma_addr_t RxPhyAddr;
713 struct page *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
714 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
715 u16 cp_cmd;
716 u16 tx_lpi_timer;
717 u32 irq_mask;
718 int irq;
719 struct clk *clk;
721 struct {
745 typedef void (*rtl_generic_fct)(struct rtl8169_private *tp); argument