Lines Matching refs:reg_rw
1220 struct mwifiex_ds_reg_rw *reg_rw, in mwifiex_reg_mem_ioctl_reg_rw() argument
1225 switch (reg_rw->type) { in mwifiex_reg_mem_ioctl_reg_rw()
1245 return mwifiex_send_cmd(priv, cmd_no, action, 0, reg_rw, true); in mwifiex_reg_mem_ioctl_reg_rw()
1258 struct mwifiex_ds_reg_rw reg_rw; in mwifiex_reg_write() local
1260 reg_rw.type = reg_type; in mwifiex_reg_write()
1261 reg_rw.offset = reg_offset; in mwifiex_reg_write()
1262 reg_rw.value = reg_value; in mwifiex_reg_write()
1264 return mwifiex_reg_mem_ioctl_reg_rw(priv, ®_rw, HostCmd_ACT_GEN_SET); in mwifiex_reg_write()
1278 struct mwifiex_ds_reg_rw reg_rw; in mwifiex_reg_read() local
1280 reg_rw.type = reg_type; in mwifiex_reg_read()
1281 reg_rw.offset = reg_offset; in mwifiex_reg_read()
1282 ret = mwifiex_reg_mem_ioctl_reg_rw(priv, ®_rw, HostCmd_ACT_GEN_GET); in mwifiex_reg_read()
1287 *value = reg_rw.value; in mwifiex_reg_read()