Home
last modified time | relevance | path

Searched refs:connect (Results 1 – 25 of 243) sorted by relevance

12345678910

/drivers/net/wireless/ath/ath6kl/
Dinit.c326 struct htc_service_connect_req connect; in ath6kl_init_service_ep() local
328 memset(&connect, 0, sizeof(connect)); in ath6kl_init_service_ep()
331 connect.ep_cb.tx_comp_multi = ath6kl_tx_complete; in ath6kl_init_service_ep()
332 connect.ep_cb.rx = ath6kl_rx; in ath6kl_init_service_ep()
333 connect.ep_cb.rx_refill = ath6kl_rx_refill; in ath6kl_init_service_ep()
334 connect.ep_cb.tx_full = ath6kl_tx_queue_full; in ath6kl_init_service_ep()
340 connect.max_txq_depth = MAX_DEFAULT_SEND_QUEUE_DEPTH; in ath6kl_init_service_ep()
341 connect.ep_cb.rx_refill_thresh = ATH6KL_MAX_RX_BUFFERS / 4; in ath6kl_init_service_ep()
342 if (!connect.ep_cb.rx_refill_thresh) in ath6kl_init_service_ep()
343 connect.ep_cb.rx_refill_thresh++; in ath6kl_init_service_ep()
[all …]
Dhtc_pipe.c1558 struct htc_service_connect_req connect; in ath6kl_htc_pipe_wait_target() local
1595 memset(&connect, 0, sizeof(connect)); in ath6kl_htc_pipe_wait_target()
1597 connect.ep_cb.tx_complete = htc_txctrl_complete; in ath6kl_htc_pipe_wait_target()
1598 connect.ep_cb.rx = htc_rxctrl_complete; in ath6kl_htc_pipe_wait_target()
1599 connect.max_txq_depth = NUM_CONTROL_TX_BUFFERS; in ath6kl_htc_pipe_wait_target()
1600 connect.svc_id = HTC_CTRL_RSVD_SVC; in ath6kl_htc_pipe_wait_target()
1603 status = ath6kl_htc_pipe_conn_service(target, &connect, &resp); in ath6kl_htc_pipe_wait_target()
/drivers/net/wireless/ath/ath9k/
Dwmi.c253 struct htc_service_connreq connect; in ath9k_wmi_connect() local
258 memset(&connect, 0, sizeof(connect)); in ath9k_wmi_connect()
260 connect.ep_callbacks.priv = wmi; in ath9k_wmi_connect()
261 connect.ep_callbacks.tx = ath9k_wmi_ctrl_tx; in ath9k_wmi_connect()
262 connect.ep_callbacks.rx = ath9k_wmi_ctrl_rx; in ath9k_wmi_connect()
263 connect.service_id = WMI_CONTROL_SVC; in ath9k_wmi_connect()
265 ret = htc_connect_service(htc, &connect, &wmi->ctrl_epid); in ath9k_wmi_connect()
/drivers/misc/sgi-xp/
Dxp_main.c81 xpc_set_interface(void (*connect) (int), in xpc_set_interface()
89 xpc_interface.connect = connect; in xpc_set_interface()
167 if (xpc_interface.connect) in xpc_connect()
168 xpc_interface.connect(ch_number); in xpc_connect()
/drivers/hwmon/
Dntc_thermistor.c416 pdata->connect = NTC_CONNECTED_POSITIVE; in ntc_thermistor_parse_dt()
418 pdata->connect = NTC_CONNECTED_GROUND; in ntc_thermistor_parse_dt()
454 return (pdata->connect == NTC_CONNECTED_POSITIVE) ? in get_ohm_of_thermistor()
457 return (pdata->connect == NTC_CONNECTED_POSITIVE) ? in get_ohm_of_thermistor()
460 if (pdata->connect == NTC_CONNECTED_POSITIVE && puo == 0) in get_ohm_of_thermistor()
462 else if (pdata->connect == NTC_CONNECTED_GROUND && pdo == 0) in get_ohm_of_thermistor()
464 else if (pdata->connect == NTC_CONNECTED_POSITIVE) in get_ohm_of_thermistor()
669 (pdata->pullup_ohm == 0 && pdata->connect == in ntc_thermistor_probe()
671 (pdata->pulldown_ohm == 0 && pdata->connect == in ntc_thermistor_probe()
673 (pdata->connect != NTC_CONNECTED_POSITIVE && in ntc_thermistor_probe()
[all …]
/drivers/nvme/host/
Dfabrics.c312 inv_sqe, cmd->connect.qid); in nvmf_log_connect_error()
336 cmd->connect.recfmt); in nvmf_log_connect_error()
375 cmd.connect.opcode = nvme_fabrics_command; in nvmf_connect_admin_queue()
376 cmd.connect.fctype = nvme_fabrics_type_connect; in nvmf_connect_admin_queue()
377 cmd.connect.qid = 0; in nvmf_connect_admin_queue()
378 cmd.connect.sqsize = cpu_to_le16(NVME_AQ_DEPTH - 1); in nvmf_connect_admin_queue()
384 cmd.connect.kato = ctrl->kato ? in nvmf_connect_admin_queue()
388 cmd.connect.cattr |= NVME_CONNECT_DISABLE_SQFLOW; in nvmf_connect_admin_queue()
445 cmd.connect.opcode = nvme_fabrics_command; in nvmf_connect_io_queue()
446 cmd.connect.fctype = nvme_fabrics_type_connect; in nvmf_connect_io_queue()
[all …]
/drivers/gpu/drm/msm/disp/mdp5/
Dmdp5_cfg.c91 .connect = {
173 .connect = {
268 .connect = {
337 .connect = {
430 .connect = {
538 .connect = {
625 .connect = {
731 .connect = {
/drivers/usb/musb/
Dmusb_debugfs.c236 int connect; in musb_softconnect_show() local
244 connect = reg & MUSB_DEVCTL_SESSION ? 1 : 0; in musb_softconnect_show()
250 connect = -1; in musb_softconnect_show()
253 seq_printf(s, "%d\n", connect); in musb_softconnect_show()
/drivers/nvme/target/
Dfabrics-cmd.c104 struct nvmf_connect_command *c = &req->cmd->connect; in nvmet_install_queue()
145 struct nvmf_connect_command *c = &req->cmd->connect; in nvmet_execute_admin_connect()
208 struct nvmf_connect_command *c = &req->cmd->connect; in nvmet_execute_io_connect()
285 if (cmd->connect.qid == 0) in nvmet_parse_connect_cmd()
/drivers/media/radio/si470x/
DKconfig9 Say Y here if you want to connect this type of radio to your
35 Say Y here if you want to connect this type of radio to your
48 Say Y here if you want to connect this type of radio to your
/drivers/net/appletalk/
DKconfig11 wish to connect to it, say Y. You will need to use the netatalk package
20 General information about how to connect Linux, Windows machines and
39 connect to the AppleTalk network, say Y.
46 This allows you to use the AppleTalk PC card to connect to LocalTalk
57 This allows you to use COPS AppleTalk cards to connect to LocalTalk
/drivers/nfc/
Dmei_phy.c144 struct mei_nfc_connect *connect; in mei_nfc_connect() local
160 connect = (struct mei_nfc_connect *)cmd->data; in mei_nfc_connect()
173 connect->fw_ivn = phy->fw_ivn; in mei_nfc_connect()
174 connect->vendor_id = phy->vendor_id; in mei_nfc_connect()
/drivers/net/wireless/
Dvirt_wifi.c213 struct delayed_work connect; member
234 could_schedule = schedule_delayed_work(&priv->connect, HZ * 2); in virt_wifi_connect()
252 container_of(work, struct virt_wifi_netdev_priv, connect.work); in virt_wifi_connect_complete()
275 if (cancel_delayed_work_sync(&priv->connect)) { in virt_wifi_cancel_connect()
347 .connect = virt_wifi_connect,
573 INIT_DELAYED_WORK(&priv->connect, virt_wifi_connect_complete); in virt_wifi_newlink()
/drivers/xen/
Dpvcalls-back.c384 struct sockaddr *sa = (struct sockaddr *)&req->u.connect.addr; in pvcalls_back_connect()
388 if (req->u.connect.len < sizeof(sa->sa_family) || in pvcalls_back_connect()
389 req->u.connect.len > sizeof(req->u.connect.addr) || in pvcalls_back_connect()
396 ret = inet_stream_connect(sock, sa, req->u.connect.len, 0); in pvcalls_back_connect()
403 req->u.connect.id, in pvcalls_back_connect()
404 req->u.connect.ref, in pvcalls_back_connect()
405 req->u.connect.evtchn, in pvcalls_back_connect()
416 rsp->u.connect.id = req->u.connect.id; in pvcalls_back_connect()
/drivers/net/hamradio/
DKconfig53 DMA on one port. You usually use those boards to connect your
85 These cards are used to connect your Linux box to an amateur radio
121 modems that connect to a serial interface. The driver supports the
141 modems that connect to a serial interface. The driver supports the
159 connect to a parallel interface. The driver supports the picpar and
174 connect to a parallel interface. The driver supports the EPP
/drivers/usb/misc/
DKconfig53 Say Y here if you want to connect a USB Lego Infrared Tower to your
65 Say Y here if you want to connect an USBLCD to your computer's
76 Say Y here if you want to connect a Cypress CY7C63xxx
89 Say Y here if you want to connect a Cypress USB thermometer
154 Say Y here if you want to connect a PlayStation 2 Trance Vibrator
211 Say Y here if you want to connect a YUREX to your computer's
259 Say Y here if you want to connect an AltusMetrum ChaosKey or
/drivers/media/radio/si4713/
DKconfig11 Say Y here if you want to connect this type of radio to your
25 Say Y here if you want to connect this type of radio to your
/drivers/usb/class/
DKconfig25 Say Y here if you want to connect a USB printer to your computer's
44 Say Y here if you want to connect a USB device that follows
/drivers/staging/isdn/gigaset/
DKconfig45 Say M here if you want to connect to the Gigaset base via DECT
52 Say M here if you want to connect to the Gigaset base via DECT
/drivers/staging/wusbcore/Documentation/
Dwusb-cbaf44 If we allow the device to connect, set a random new CDID and CK
46 connect wireless. We save them for that next time also so we can
/drivers/media/radio/
DKconfig48 Say Y here if you want to connect this type of radio to your
50 you must connect the line out connector to a sound card or a
60 Say Y here if you want to connect this type of radio to your
62 you must connect the line out connector to a sound card or a
123 Say Y here if you want to connect this type of FM transmitter
137 Say Y here if you want to connect this type of AM/FM/SW receiver
147 Say Y here if you want to connect this type of radio to your
149 you must connect the line out connector to a sound card or a
/drivers/staging/most/i2c/
DKconfig10 Say Y here if you want to connect via I2C to network tranceiver.
/drivers/net/wan/
DKconfig15 needed to connect to a WAN. As an alternative, a relatively
17 connect to a WAN.
45 These boards allow to connect synchronous serial devices (for example
69 - LMC 1000 board allows you to connect synchronous serial devices
73 - LMC 1200 with on board DSU board allows you to connect your Linux
104 connect the box to a WAN.
328 Frame Relay is a fast low-cost way to connect to a remote Internet
/drivers/hsi/
DKconfig9 synchronous serial interface used mainly to connect
/drivers/staging/most/usb/
DKconfig10 Say Y here if you want to connect via USB to network tranceiver.

12345678910