Lines Matching refs:reg_rw
1208 struct mwifiex_ds_reg_rw *reg_rw, in mwifiex_reg_mem_ioctl_reg_rw() argument
1213 switch (reg_rw->type) { in mwifiex_reg_mem_ioctl_reg_rw()
1233 return mwifiex_send_cmd(priv, cmd_no, action, 0, reg_rw, true); in mwifiex_reg_mem_ioctl_reg_rw()
1246 struct mwifiex_ds_reg_rw reg_rw; in mwifiex_reg_write() local
1248 reg_rw.type = reg_type; in mwifiex_reg_write()
1249 reg_rw.offset = reg_offset; in mwifiex_reg_write()
1250 reg_rw.value = reg_value; in mwifiex_reg_write()
1252 return mwifiex_reg_mem_ioctl_reg_rw(priv, ®_rw, HostCmd_ACT_GEN_SET); in mwifiex_reg_write()
1266 struct mwifiex_ds_reg_rw reg_rw; in mwifiex_reg_read() local
1268 reg_rw.type = reg_type; in mwifiex_reg_read()
1269 reg_rw.offset = reg_offset; in mwifiex_reg_read()
1270 ret = mwifiex_reg_mem_ioctl_reg_rw(priv, ®_rw, HostCmd_ACT_GEN_GET); in mwifiex_reg_read()
1275 *value = reg_rw.value; in mwifiex_reg_read()