/Linux-v5.4/drivers/staging/most/ |
D | core.h | 241 int (*configure)(struct most_interface *iface, int channel_idx, 243 int (*enqueue)(struct most_interface *iface, int channel_idx, 245 int (*poison_channel)(struct most_interface *iface, int channel_idx); 246 void (*request_netinfo)(struct most_interface *iface, int channel_idx, 268 int (*probe_channel)(struct most_interface *iface, int channel_idx, 272 int channel_idx); 274 int (*tx_completion)(struct most_interface *iface, int channel_idx); 301 void most_stop_enqueue(struct most_interface *iface, int channel_idx); 311 void most_resume_enqueue(struct most_interface *iface, int channel_idx); 314 struct mbo *most_get_mbo(struct most_interface *iface, int channel_idx, [all …]
|
/Linux-v5.4/drivers/tty/ipwireless/ |
D | hardware.c | 38 unsigned int channel_idx, const unsigned char *data, int len); 340 unsigned int channel_idx; member 625 unsigned int channel_idx = address - 1; in queue_received_packet() local 630 if (channel_idx >= NL_NUM_OF_ADDRESSES) { in queue_received_packet() 641 &hw->packet_assembler[channel_idx]; in queue_received_packet() 654 (*assem)->channel_idx = channel_idx; in queue_received_packet() 678 packet->channel_idx = channel_idx; in queue_received_packet() 734 packet->channel_idx, in ipw_receive_data_work() 747 handle_received_CTRL_packet(hw, packet->channel_idx, in ipw_receive_data_work() 766 unsigned int channel_idx, in handle_received_CTRL_packet() argument [all …]
|
D | network.h | 35 unsigned int channel_idx, unsigned int control_lines, 38 unsigned int channel_idx, unsigned char *data, 43 unsigned int channel_idx, struct ipw_tty *tty); 45 unsigned int channel_idx);
|
D | network.c | 313 unsigned int channel_idx, in ipwireless_network_notify_control_line_change() argument 319 if (channel_idx == IPW_CHANNEL_RAS) in ipwireless_network_notify_control_line_change() 324 network->associated_ttys[channel_idx][i]; in ipwireless_network_notify_control_line_change() 334 channel_idx, in ipwireless_network_notify_control_line_change() 365 unsigned int channel_idx, in ipwireless_network_packet_received() argument 373 struct ipw_tty *tty = network->associated_ttys[channel_idx][i]; in ipwireless_network_packet_received() 384 if (channel_idx == IPW_CHANNEL_RAS in ipwireless_network_packet_received() 452 unsigned int channel_idx, in ipwireless_associate_network_tty() argument 458 if (network->associated_ttys[channel_idx][i] == NULL) { in ipwireless_associate_network_tty() 459 network->associated_ttys[channel_idx][i] = tty; in ipwireless_associate_network_tty() [all …]
|
D | tty.c | 50 unsigned int channel_idx; member 312 ret = ipwireless_set_RTS(tty->hardware, tty->channel_idx, 1); in set_control_lines() 323 ret = ipwireless_set_DTR(tty->hardware, tty->channel_idx, 1); in set_control_lines() 334 ret = ipwireless_set_RTS(tty->hardware, tty->channel_idx, 0); in set_control_lines() 343 ret = ipwireless_set_DTR(tty->hardware, tty->channel_idx, 0); in set_control_lines() 439 struct ipw_network *network, int channel_idx, in add_tty() argument 447 ttys[j]->channel_idx = channel_idx; in add_tty() 455 ipwireless_associate_network_tty(network, channel_idx, ttys[j]); in add_tty() 542 ttyj->channel_idx); in ipwireless_tty_free() 616 unsigned int channel_idx, in ipwireless_tty_notify_control_line_change() argument
|
D | hardware.h | 39 int ipwireless_set_DTR(struct ipw_hardware *hw, unsigned int channel_idx, 41 int ipwireless_set_RTS(struct ipw_hardware *hw, unsigned int channel_idx, 44 unsigned int channel_idx,
|
D | tty.h | 42 unsigned int channel_idx,
|
/Linux-v5.4/drivers/staging/most/video/ |
D | video.c | 370 struct most_interface *iface, int channel_idx) in get_comp_dev() argument 377 if (mdev->iface == iface && mdev->ch_idx == channel_idx) { in get_comp_dev() 451 static int comp_probe_channel(struct most_interface *iface, int channel_idx, in comp_probe_channel() argument 456 struct most_video_dev *mdev = get_comp_dev(iface, channel_idx); in comp_probe_channel() 483 mdev->ch_idx = channel_idx; in comp_probe_channel() 511 int channel_idx) in comp_disconnect_channel() argument 513 struct most_video_dev *mdev = get_comp_dev(iface, channel_idx); in comp_disconnect_channel()
|
/Linux-v5.4/drivers/staging/most/net/ |
D | net.c | 295 static int comp_probe_channel(struct most_interface *iface, int channel_idx, in comp_probe_channel() argument 344 ch->ch_id = channel_idx; in comp_probe_channel() 353 int channel_idx) in comp_disconnect_channel() argument 367 if (nd->rx.linked && channel_idx == nd->rx.ch_id) { in comp_disconnect_channel() 369 } else if (nd->tx.linked && channel_idx == nd->tx.ch_id) { in comp_disconnect_channel() 400 int channel_idx) in comp_resume_tx_channel() argument 408 if (nd->tx.ch_id != channel_idx) in comp_resume_tx_channel()
|
/Linux-v5.4/drivers/soc/fsl/dpio/ |
D | qbman-portal.c | 502 void qbman_swp_push_get(struct qbman_swp *s, u8 channel_idx, int *enabled) in qbman_swp_push_get() argument 506 WARN_ON(channel_idx > 15); in qbman_swp_push_get() 507 *enabled = src | (1 << channel_idx); in qbman_swp_push_get() 516 void qbman_swp_push_set(struct qbman_swp *s, u8 channel_idx, int enable) in qbman_swp_push_set() argument 520 WARN_ON(channel_idx > 15); in qbman_swp_push_set() 522 s->sdq |= 1 << channel_idx; in qbman_swp_push_set() 524 s->sdq &= ~(1 << channel_idx); in qbman_swp_push_set()
|
D | qbman-portal.h | 146 void qbman_swp_push_get(struct qbman_swp *p, u8 channel_idx, int *enabled); 147 void qbman_swp_push_set(struct qbman_swp *p, u8 channel_idx, int enable);
|
/Linux-v5.4/drivers/net/ethernet/sfc/falcon/ |
D | rx.c | 899 unsigned int channel_idx, index, size; in __ef4_filter_rfs_expire() local 906 channel_idx = efx->rps_expire_channel; in __ef4_filter_rfs_expire() 910 struct ef4_channel *channel = ef4_get_channel(efx, channel_idx); in __ef4_filter_rfs_expire() 917 index, channel_idx, flow_id); in __ef4_filter_rfs_expire() 921 if (++channel_idx == efx->n_channels) in __ef4_filter_rfs_expire() 922 channel_idx = 0; in __ef4_filter_rfs_expire() 926 efx->rps_expire_channel = channel_idx; in __ef4_filter_rfs_expire()
|
/Linux-v5.4/drivers/net/ethernet/sfc/ |
D | rx.c | 995 unsigned int channel_idx, index, size; in __efx_filter_rfs_expire() local 1001 channel_idx = efx->rps_expire_channel; in __efx_filter_rfs_expire() 1005 struct efx_channel *channel = efx_get_channel(efx, channel_idx); in __efx_filter_rfs_expire() 1012 index, channel_idx, flow_id); in __efx_filter_rfs_expire() 1016 if (++channel_idx == efx->n_channels) in __efx_filter_rfs_expire() 1017 channel_idx = 0; in __efx_filter_rfs_expire() 1021 efx->rps_expire_channel = channel_idx; in __efx_filter_rfs_expire()
|
/Linux-v5.4/drivers/staging/rtl8188eu/core/ |
D | rtw_mlme_ext.c | 1912 if (pmlmeext->sitesurvey_res.channel_idx < pmlmeext->sitesurvey_res.ch_num) { in site_survey() 1913 ch = &pmlmeext->sitesurvey_res.ch[pmlmeext->sitesurvey_res.channel_idx]; in site_survey() 1923 if (pmlmeext->sitesurvey_res.channel_idx == 0) in site_survey() 1966 pmlmeext->sitesurvey_res.channel_idx = -1; in site_survey() 3890 pmlmeext->sitesurvey_res.channel_idx = 0; in init_mlme_ext_priv_value() 4755 pmlmeext->sitesurvey_res.channel_idx++; in survey_timer_hdl() 4758 pmlmeext->sitesurvey_res.channel_idx = pmlmeext->sitesurvey_res.ch_num; in survey_timer_hdl() 4760 , pmlmeext->sitesurvey_res.channel_idx); in survey_timer_hdl() 5136 pmlmeext->sitesurvey_res.channel_idx = 0; in sitesurvey_cmd_hdl()
|
/Linux-v5.4/drivers/staging/rtl8188eu/include/ |
D | rtw_mlme_ext.h | 241 int channel_idx; member
|
/Linux-v5.4/drivers/staging/rtl8723bs/core/ |
D | rtw_mlme_ext.c | 300 pmlmeext->sitesurvey_res.channel_idx = 0; in init_mlme_ext_priv_value() 4285 if (pmlmeext->sitesurvey_res.channel_idx < pmlmeext->sitesurvey_res.ch_num) { in site_survey() 4286 ch = &pmlmeext->sitesurvey_res.ch[pmlmeext->sitesurvey_res.channel_idx]; in site_survey() 4295 , pmlmeext->sitesurvey_res.channel_idx in site_survey() 4309 if (pmlmeext->sitesurvey_res.channel_idx == 0) { in site_survey() 5789 pmlmeext->sitesurvey_res.channel_idx++; in survey_timer_hdl() 5794 pmlmeext->sitesurvey_res.channel_idx = pmlmeext->sitesurvey_res.ch_num; in survey_timer_hdl() 5796 , pmlmeext->sitesurvey_res.channel_idx in survey_timer_hdl() 6359 pmlmeext->sitesurvey_res.channel_idx = 0; in sitesurvey_cmd_hdl()
|
/Linux-v5.4/drivers/staging/rtl8723bs/include/ |
D | rtw_mlme_ext.h | 331 int channel_idx; member
|
/Linux-v5.4/drivers/net/wireless/intel/iwlegacy/ |
D | commands.h | 2210 u8 channel_idx; /* idx in measurement channel list */ member
|