Searched refs:pintfhdl (Results 1 – 3 of 3) sorted by relevance
| /linux/drivers/staging/rtl8723bs/core/ |
| H A D | rtw_io.c | 32 struct intf_hdl *pintfhdl = &(pio_priv->intf); in rtw_read8() local 33 u8 (*_read8)(struct intf_hdl *pintfhdl, u32 addr); in rtw_read8() 35 _read8 = pintfhdl->io_ops._read8; in rtw_read8() 37 return _read8(pintfhdl, addr); in rtw_read8() 44 struct intf_hdl *pintfhdl = &(pio_priv->intf); in rtw_read16() local 45 u16 (*_read16)(struct intf_hdl *pintfhdl, u32 addr); in rtw_read16() 47 _read16 = pintfhdl->io_ops._read16; in rtw_read16() 49 return _read16(pintfhdl, addr); in rtw_read16() 56 struct intf_hdl *pintfhdl = &(pio_priv->intf); in rtw_read32() local 57 u32 (*_read32)(struct intf_hdl *pintfhdl, u32 addr); in rtw_read32() [all …]
|
| /linux/drivers/staging/rtl8723bs/os_dep/ |
| H A D | sdio_ops_linux.c | 32 s32 _sd_cmd52_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata) in _sd_cmd52_read() argument 41 padapter = pintfhdl->padapter; in _sd_cmd52_read() 42 psdiodev = pintfhdl->pintf_dev; in _sd_cmd52_read() 63 s32 sd_cmd52_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata) in sd_cmd52_read() argument 73 padapter = pintfhdl->padapter; in sd_cmd52_read() 74 psdiodev = pintfhdl->pintf_dev; in sd_cmd52_read() 85 err = _sd_cmd52_read(pintfhdl, addr, cnt, pdata); in sd_cmd52_read() 96 s32 _sd_cmd52_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata) in _sd_cmd52_write() argument 105 padapter = pintfhdl->padapter; in _sd_cmd52_write() 106 psdiodev = pintfhdl->pintf_dev; in _sd_cmd52_write() [all …]
|
| /linux/drivers/staging/rtl8723bs/include/ |
| H A D | sdio_ops_linux.h | 14 s32 _sd_cmd52_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata); 15 s32 _sd_cmd52_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata); 16 s32 sd_cmd52_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata); 17 s32 sd_cmd52_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata); 19 u8 sd_read8(struct intf_hdl *pintfhdl, u32 addr, s32 *err); 20 u32 sd_read32(struct intf_hdl *pintfhdl, u32 addr, s32 *err); 21 s32 _sd_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata); 22 s32 sd_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata); 23 void sd_write8(struct intf_hdl *pintfhdl, u32 addr, u8 v, s32 *err); 24 void sd_write32(struct intf_hdl *pintfhdl, u32 addr, u32 v, s32 *err); [all …]
|