Lines Matching refs:addr

37 u8 r8712_read8(struct _adapter *adapter, u32 addr)
41 u8 (*_read8)(struct intf_hdl *pintfhdl, u32 addr);
44 return _read8(pintfhdl, addr);
47 u16 r8712_read16(struct _adapter *adapter, u32 addr)
51 u16 (*_read16)(struct intf_hdl *pintfhdl, u32 addr);
54 return _read16(pintfhdl, addr);
57 u32 r8712_read32(struct _adapter *adapter, u32 addr)
61 u32 (*_read32)(struct intf_hdl *pintfhdl, u32 addr);
64 return _read32(pintfhdl, addr);
67 void r8712_write8(struct _adapter *adapter, u32 addr, u8 val)
71 void (*_write8)(struct intf_hdl *pintfhdl, u32 addr, u8 val);
74 _write8(pintfhdl, addr, val);
77 void r8712_write16(struct _adapter *adapter, u32 addr, u16 val)
81 void (*_write16)(struct intf_hdl *pintfhdl, u32 addr, u16 val);
84 _write16(pintfhdl, addr, val);
87 void r8712_write32(struct _adapter *adapter, u32 addr, u32 val)
92 void (*_write32)(struct intf_hdl *pintfhdl, u32 addr, u32 val);
95 _write32(pintfhdl, addr, val);
98 void r8712_read_mem(struct _adapter *adapter, u32 addr, u32 cnt, u8 *pmem)
103 void (*_read_mem)(struct intf_hdl *pintfhdl, u32 addr, u32 cnt,
109 _read_mem(pintfhdl, addr, cnt, pmem);
112 void r8712_write_mem(struct _adapter *adapter, u32 addr, u32 cnt, u8 *pmem)
116 void (*_write_mem)(struct intf_hdl *pintfhdl, u32 addr, u32 cnt,
120 _write_mem(pintfhdl, addr, cnt, pmem);
123 void r8712_read_port(struct _adapter *adapter, u32 addr, u32 cnt, u8 *pmem)
128 u32 (*_read_port)(struct intf_hdl *pintfhdl, u32 addr, u32 cnt,
134 _read_port(pintfhdl, addr, cnt, pmem);
137 void r8712_write_port(struct _adapter *adapter, u32 addr, u32 cnt, u8 *pmem)
142 u32 (*_write_port)(struct intf_hdl *pintfhdl, u32 addr, u32 cnt,
145 _write_port(pintfhdl, addr, cnt, pmem);