Searched refs:sid (Results 1 - 25 of 73) sorted by relevance

123

/drivers/media/usb/pvrusb2/
H A Dpvrusb2-cs53l32a.c65 unsigned int sid = hdw->hdw_desc->signal_routing_scheme; local
69 sp = (sid < ARRAY_SIZE(routing_schemes)) ?
70 routing_schemes[sid] : NULL;
78 sid, hdw->input_val);
H A Dpvrusb2-audio.c64 unsigned int sid = hdw->hdw_desc->signal_routing_scheme; local
68 sp = (sid < ARRAY_SIZE(routing_schemes)) ?
69 routing_schemes[sid] : NULL;
80 sid, hdw->input_val);
H A Dpvrusb2-video-v4l.c82 unsigned int sid = hdw->hdw_desc->signal_routing_scheme; local
88 sp = (sid < ARRAY_SIZE(routing_schemes)) ?
89 routing_schemes[sid] : NULL;
97 sid, hdw->input_val);
H A Dpvrusb2-cx2584x-v4l.c132 unsigned int sid = hdw->hdw_desc->signal_routing_scheme; local
134 sp = (sid < ARRAY_SIZE(routing_schemes)) ?
135 routing_schemes[sid] : NULL;
143 sid, hdw->input_val);
/drivers/firewire/
H A Dcore-topology.c53 static u32 *count_ports(u32 *sid, int *total_port_count, int *child_port_count) argument
62 q = *sid;
80 return sid + 1;
83 sid++;
84 q = *sid;
102 static int get_port_type(u32 *sid, int port_index) argument
108 return (sid[index] >> shift) & 0x03;
111 static struct fw_node *fw_node_create(u32 sid, int port_count, int color) argument
121 node->node_id = LOCAL_BUS | SELF_ID_PHY_ID(sid);
122 node->link_on = SELF_ID_LINK_ON(sid);
183 build_tree(struct fw_card *card, u32 *sid, int self_id_count) argument
[all...]
/drivers/net/ppp/
H A Dpppoe.c120 static inline bool stage_session(__be16 sid) argument
122 return sid != 0;
134 return a->sid == b->sid && ether_addr_equal(a->remote, b->remote);
137 static inline int cmp_addr(struct pppoe_addr *a, __be16 sid, char *addr) argument
139 return a->sid == sid && ether_addr_equal(a->remote, addr);
146 static int hash_item(__be16 sid, unsigned char *addr) argument
154 hash ^= (__force __u32)sid >> i;
166 static struct pppox_sock *__get_item(struct pppoe_net *pn, __be16 sid, argument
204 __delete_item(struct pppoe_net *pn, __be16 sid, char *addr, int ifindex) argument
230 get_item(struct pppoe_net *pn, __be16 sid, unsigned char *addr, int ifindex) argument
265 delete_item(struct pppoe_net *pn, __be16 sid, char *addr, int ifindex) argument
[all...]
/drivers/video/fbdev/
H A Dpmag-aa-fb.c482 int sid; local
485 while ((sid = search_tc_card("PMAG-AA")) >= 0) {
487 claim_tc_card(sid);
488 init_one(sid);
496 int sid; local
498 while ((sid = search_tc_card("PMAG-AA")) >= 0) {
499 exit_one(sid);
500 release_tc_card(sid);
H A Dhpfb.c379 unsigned int sid; local
410 if (!err && (i == DIO_ID_FBUFFER) && topcat_sid_ok(sid = DIO_SECID(INTFBVADDR))) {
413 printk(KERN_INFO "Internal Topcat found (secondary id %02x)\n", sid);
/drivers/scsi/libfc/
H A Dfc_exch.c649 if (ep->sid) {
656 fc_fill_fc_hdr(fp, FC_RCTL_BA_ABTS, ep->did, ep->sid,
974 ep->sid = ntoh24(fh->fh_d_id);
1177 ep->sid = resp_id;
1180 ep->sid = orig_id;
1230 fc_fill_fc_hdr(fp, rctl, ep->did, ep->sid, fh_type, f_ctl, 0);
1545 if (ep->sid != 0 && ep->sid != ntoh24(fh->fh_d_id)) {
1856 * @sid: The source ID
1860 * and exchanges. If sid i
1864 fc_exch_pool_reset(struct fc_lport *lport, struct fc_exch_pool *pool, u32 sid, u32 did) argument
1909 fc_exch_mgr_reset(struct fc_lport *lport, u32 sid, u32 did) argument
1955 u32 sid; local
2193 u32 sid; local
[all...]
H A Dfc_rport.c758 u32 sid; local
760 sid = fc_frame_sid(fp);
762 FC_RPORT_ID_DBG(lport, sid, "Received FLOGI request\n");
780 rdata = lport->tt.rport_lookup(lport, sid);
1595 u32 sid; local
1597 sid = fc_frame_sid(fp);
1599 FC_RPORT_ID_DBG(lport, sid, "Received PLOGI request\n");
1603 FC_RPORT_ID_DBG(lport, sid, "Received PLOGI too short\n");
1611 rdata = lport->tt.rport_create(lport, sid);
1904 u32 sid; local
[all...]
/drivers/spmi/
H A Dspmi.c96 spmi_cmd(struct spmi_controller *ctrl, u8 opcode, u8 sid) argument
101 return ctrl->cmd(ctrl, opcode, sid);
105 u8 sid, u16 addr, u8 *buf, size_t len)
110 return ctrl->read_cmd(ctrl, opcode, sid, addr, buf, len);
114 u8 sid, u16 addr, const u8 *buf, size_t len)
119 return ctrl->write_cmd(ctrl, opcode, sid, addr, buf, len);
104 spmi_read_cmd(struct spmi_controller *ctrl, u8 opcode, u8 sid, u16 addr, u8 *buf, size_t len) argument
113 spmi_write_cmd(struct spmi_controller *ctrl, u8 opcode, u8 sid, u16 addr, const u8 *buf, size_t len) argument
H A Dspmi-pmic-arb.c215 static int pmic_arb_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid) argument
226 cmd = ((opc | 0x40) << 27) | ((sid & 0xf) << 20);
236 static int pmic_arb_read_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid, argument
262 cmd = (opc << 27) | ((sid & 0xf) << 20) | (addr << 4) | (bc & 0x7);
282 static int pmic_arb_write_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid, argument
310 cmd = (opc << 27) | ((sid & 0xf) << 20) | (addr << 4) | (bc & 0x7);
350 u8 sid = d->hwirq >> 24; local
353 if (pmic_arb_write_cmd(pa->spmic, SPMI_CMD_EXT_WRITEL, sid,
363 u8 sid = d->hwirq >> 24; local
366 if (pmic_arb_read_cmd(pa->spmic, SPMI_CMD_EXT_READL, sid,
[all...]
/drivers/gpu/drm/vmwgfx/
H A Dsvga3d_reg.h1260 uint32 sid; member in struct:SVGA3dSurfaceImageId
1334 uint32 sid; member in struct:__anon1116
1357 uint32 sid; member in struct:__anon1117
1382 uint32 sid; member in struct:__anon1118
1473 uint32 sid; member in struct:__anon1126
1922 uint32 sid; member in struct:__anon1165
2079 uint32 sid; member in struct:SVGA3dCmdDefineGBSurface
2095 uint32 sid; member in struct:SVGA3dCmdDestroyGBSurface
2105 uint32 sid; member in struct:SVGA3dCmdBindGBSurface
2121 uint32 sid; member in struct:__anon1170
2147 uint32 sid; member in struct:SVGA3dCmdUpdateGBSurface
2169 uint32 sid; member in struct:SVGA3dCmdReadbackGBSurface
2206 uint32 sid; member in struct:SVGA3dCmdInvalidateGBSurface
[all...]
H A Dvmwgfx_surface.c198 cmd->body.sid = id;
221 cmd->body.sid = srf->res.id;
272 body->host.sid = srf->res.id;
672 return ttm_ref_object_base_unref(tfile, arg->sid, TTM_REF_USAGE);
867 rep->sid = user_srf->prime.base.hash.key;
982 ret = vmw_surface_handle_reference(dev_priv, file_priv, req->sid,
1055 cmd->body.sid = srf->res.id;
1104 cmd1->body.sid = res->id;
1110 cmd2->body.sid = res->id;
1156 cmd1->body.sid
[all...]
H A Dvmwgfx_ioctl.c277 ret = vmw_user_resource_lookup_handle(dev_priv, tfile, arg->sid,
285 vfb, surface, arg->sid,
/drivers/target/iscsi/
H A Discsi_target_erl2.c103 " SID: %u\n", sess->conn_recovery_count, sess->sid);
186 " SID: %u\n", sess->conn_recovery_count, sess->sid);
261 cr->cid, sess->sid);
265 " %hu on SID: %u\n", cr->cid, sess->sid);
/drivers/iommu/
H A Dintel_irq_remapping.c309 unsigned int sq, unsigned int sid)
315 irte->sid = sid;
321 u16 sid = 0; local
329 sid = (ir_ioapic[i].bus << 8) | ir_ioapic[i].devfn;
335 if (sid == 0) {
340 set_irte_sid(irte, SVT_VERIFY_SID_SQ, SQ_ALL_16, sid);
348 u16 sid = 0; local
356 sid = (ir_hpet[i].bus << 8) | ir_hpet[i].devfn;
362 if (sid
308 set_irte_sid(struct irte *irte, unsigned int svt, unsigned int sq, unsigned int sid) argument
[all...]
/drivers/scsi/bnx2fc/
H A Dbnx2fc_els.c66 u32 sid = tgt->sid; local
85 hton24(rrq.rrq_s_id, sid);
580 u32 sid = tgt->sid; local
598 hton24(rec.rec_s_id, sid);
678 u32 did, sid; local
749 sid = tgt->sid;
752 __fc_fill_fc_hdr(fc_hdr, FC_RCTL_ELS4_REQ, did, sid,
[all...]
/drivers/net/
H A Drionet.c229 static void rionet_dbell_event(struct rio_mport *mport, void *dev_id, u16 sid, u16 tid, argument
237 printk(KERN_INFO "%s: doorbell sid %4.4x tid %4.4x info %4.4x",
238 DRV_NAME, sid, tid, info);
240 if (!nets[rnet->mport->id].active[sid]) {
243 if (peer->rdev->destid == sid) {
244 nets[rnet->mport->id].active[sid] =
249 rio_mport_send_doorbell(mport, sid,
253 nets[rnet->mport->id].active[sid] = NULL;
/drivers/mfd/
H A Dtwl-core.c159 unsigned char sid; /* Slave ID */ member in struct:twl_mapping
427 int sid; local
439 sid = twl_priv->twl_map[mod_no].sid;
440 twl = &twl_priv->twl_modules[sid];
615 int status, sid; local
621 sid = twl_priv->twl_map[mod_no].sid;
622 twl = &twl_priv->twl_modules[sid];
/drivers/target/tcm_fc/
H A Dtfc_sess.c482 u32 sid = fc_frame_sid(fp); local
484 pr_debug("sid %x\n", sid);
486 sess = ft_sess_get(lport, sid);
488 pr_debug("sid %x sess lookup failed\n", sid);
/drivers/scsi/
H A Dscsi_transport_iscsi.c1620 return sess->sid;
1624 * Returns the matching session to a given sid
1626 static struct iscsi_cls_session *iscsi_session_lookup(uint32_t sid) argument
1633 if (sess->sid == sid) {
1643 * Returns the matching connection to a given sid / cid tuple
1645 static struct iscsi_cls_conn *iscsi_conn_lookup(uint32_t sid, uint32_t cid) argument
1652 if ((conn->cid == cid) && (iscsi_conn_get_sid(conn) == sid)) {
2074 session->sid = atomic_add_return(1, &iscsi_session_nr);
2089 dev_set_name(&session->dev, "session%u", session->sid);
[all...]
/drivers/usb/gadget/legacy/
H A Dg_ffs.c413 int sid = USB_GADGET_FIRST_AVAIL_IDX + i; local
415 c->c.label = gfs_strings[sid].s;
416 c->c.iConfiguration = gfs_strings[sid].id;
/drivers/staging/lustre/lnet/selftest/
H A Dconsole.h185 extern int lstcon_session_match(lst_sid_t sid);
H A Drpc.h83 lst_sid_t sid; member in struct:__anon6488

Completed in 582 milliseconds

123