Lines Matching refs:reg_rw
1207 struct mwifiex_ds_reg_rw *reg_rw, in mwifiex_reg_mem_ioctl_reg_rw() argument
1212 switch (reg_rw->type) { in mwifiex_reg_mem_ioctl_reg_rw()
1232 return mwifiex_send_cmd(priv, cmd_no, action, 0, reg_rw, true); in mwifiex_reg_mem_ioctl_reg_rw()
1245 struct mwifiex_ds_reg_rw reg_rw; in mwifiex_reg_write() local
1247 reg_rw.type = reg_type; in mwifiex_reg_write()
1248 reg_rw.offset = reg_offset; in mwifiex_reg_write()
1249 reg_rw.value = reg_value; in mwifiex_reg_write()
1251 return mwifiex_reg_mem_ioctl_reg_rw(priv, ®_rw, HostCmd_ACT_GEN_SET); in mwifiex_reg_write()
1265 struct mwifiex_ds_reg_rw reg_rw; in mwifiex_reg_read() local
1267 reg_rw.type = reg_type; in mwifiex_reg_read()
1268 reg_rw.offset = reg_offset; in mwifiex_reg_read()
1269 ret = mwifiex_reg_mem_ioctl_reg_rw(priv, ®_rw, HostCmd_ACT_GEN_GET); in mwifiex_reg_read()
1274 *value = reg_rw.value; in mwifiex_reg_read()