Home
last modified time | relevance | path

Searched refs:_buf (Results 1 – 11 of 11) sorted by relevance

/drivers/net/ethernet/sfc/
Dmcdi.h202 #define _MCDI_PTR(_buf, _offset) \ argument
203 ((u8 *)(_buf) + (_offset))
204 #define MCDI_PTR(_buf, _field) \ argument
205 _MCDI_PTR(_buf, MC_CMD_ ## _field ## _OFST)
208 #define _MCDI_DWORD(_buf, _field) \ argument
209 ((_buf) + (_MCDI_CHECK_ALIGN(MC_CMD_ ## _field ## _OFST, 4) >> 2))
211 #define MCDI_WORD(_buf, _field) \ argument
213 le16_to_cpu(*(__force const __le16 *)MCDI_PTR(_buf, _field)))
214 #define MCDI_SET_DWORD(_buf, _field, _value) \ argument
215 EFX_POPULATE_DWORD_1(*_MCDI_DWORD(_buf, _field), EFX_DWORD_0, _value)
[all …]
/drivers/usb/wusbcore/
Drh.c141 int wusbhc_rh_status_data(struct usb_hcd *usb_hcd, char *_buf) in wusbhc_rh_status_data() argument
151 memset(_buf, 0, size); in wusbhc_rh_status_data()
158 _buf[bitpos/8] |= (1 << (bitpos % 8)); in wusbhc_rh_status_data()
340 u32 *_buf, u16 wLength) in wusbhc_rh_get_port_status() argument
342 __le16 *buf = (__le16 *)_buf; in wusbhc_rh_get_port_status()
/drivers/net/wireless/ath/ath9k/
Dwmi.h200 #define WMI_CMD_BUF(_wmi_cmd, _buf) \ argument
203 (u8 *) _buf, sizeof(*_buf), \
/drivers/net/ethernet/mellanox/mlxsw/
Di2c.c105 #define MLXSW_I2C_READ_MSG(_client, _addr_buf, _buf, _len) { \ argument
111 .buf = (_buf), \
115 #define MLXSW_I2C_WRITE_MSG(_client, _buf, _len) \ argument
117 .buf = (u8 *)(_buf), \
/drivers/bluetooth/
Dbtrtl.c69 unsigned char **_buf) in rtl8723b_parse_firmware() argument
215 *_buf = buf; in rtl8723b_parse_firmware()
/drivers/usb/host/
Doxu210hp-hcd.c206 char _buf[80]; \
207 dbg_status_buf(_buf, sizeof _buf, label, status); \
208 oxu_dbg(oxu, "%s\n", _buf); \
212 char _buf[80]; \
213 dbg_command_buf(_buf, sizeof _buf, label, command); \
214 oxu_dbg(oxu, "%s\n", _buf); \
218 char _buf[80]; \
219 dbg_port_buf(_buf, sizeof _buf, label, port, status); \
220 oxu_dbg(oxu, "%s\n", _buf); \
Dfotg210-hcd.c274 char _buf[80]; \
275 dbg_status_buf(_buf, sizeof(_buf), label, status); \
276 fotg210_dbg(fotg210, "%s\n", _buf); \
280 char _buf[80]; \
281 dbg_command_buf(_buf, sizeof(_buf), label, command); \
282 fotg210_dbg(fotg210, "%s\n", _buf); \
286 char _buf[80]; \
288 dbg_port_buf(_buf, sizeof(_buf), label, port, status));\
/drivers/mmc/host/
Dmxcmmc.c551 static int mxcmci_pull(struct mxcmci_host *host, void *_buf, int bytes) in mxcmci_pull() argument
554 u32 *buf = _buf; in mxcmci_pull()
580 static int mxcmci_push(struct mxcmci_host *host, void *_buf, int bytes) in mxcmci_push() argument
583 u32 *buf = _buf; in mxcmci_push()
/drivers/net/ethernet/wiznet/
Dw5300.c333 struct ethtool_regs *regs, void *_buf) in w5300_get_regs() argument
336 u8 *buf = _buf; in w5300_get_regs()
/drivers/net/wireless/st/cw1200/
Dwsm.c192 int wsm_read_mib(struct cw1200_common *priv, u16 mib_id, void *_buf, in wsm_read_mib() argument
199 .buf = _buf, in wsm_read_mib()
243 int wsm_write_mib(struct cw1200_common *priv, u16 mib_id, void *_buf, in wsm_write_mib() argument
250 .buf = _buf, in wsm_write_mib()
258 WSM_PUT(buf, _buf, buf_size); in wsm_write_mib()
/drivers/nvmem/
Dcore.c1048 u8 *_buf, int len) in nvmem_cell_prepare_write_buffer() argument
1059 memcpy(buf, _buf, len); in nvmem_cell_prepare_write_buffer()