Home
last modified time | relevance | path

Searched full:ep2 (Results 1 – 25 of 63) sorted by relevance

123

/kernel/linux/linux-6.6/drivers/usb/usbip/
Dvudc_transfer.c62 struct vep *ep2; in handle_control_request() local
101 ep2 = vudc_find_endpoint(udc, w_index); in handle_control_request()
102 if (!ep2 || ep2->ep.name == udc->ep[0].ep.name) { in handle_control_request()
106 ep2->halted = 1; in handle_control_request()
134 ep2 = vudc_find_endpoint(udc, w_index); in handle_control_request()
135 if (!ep2) { in handle_control_request()
139 if (!ep2->wedged) in handle_control_request()
140 ep2->halted = 0; in handle_control_request()
158 ep2 = vudc_find_endpoint(udc, w_index); in handle_control_request()
159 if (!ep2) { in handle_control_request()
[all …]
/kernel/linux/linux-5.10/drivers/usb/usbip/
Dvudc_transfer.c62 struct vep *ep2; in handle_control_request() local
101 ep2 = vudc_find_endpoint(udc, w_index); in handle_control_request()
102 if (!ep2 || ep2->ep.name == udc->ep[0].ep.name) { in handle_control_request()
106 ep2->halted = 1; in handle_control_request()
134 ep2 = vudc_find_endpoint(udc, w_index); in handle_control_request()
135 if (!ep2) { in handle_control_request()
139 if (!ep2->wedged) in handle_control_request()
140 ep2->halted = 0; in handle_control_request()
158 ep2 = vudc_find_endpoint(udc, w_index); in handle_control_request()
159 if (!ep2) { in handle_control_request()
[all …]
/kernel/linux/linux-5.10/fs/exfat/
Dfile.c154 struct exfat_dentry *ep, *ep2; in __exfat_truncate() local
163 ep2 = exfat_get_dentry_cached(es, 1); in __exfat_truncate()
175 ep2->dentry.stream.valid_size = 0; in __exfat_truncate()
176 ep2->dentry.stream.size = 0; in __exfat_truncate()
178 ep2->dentry.stream.valid_size = cpu_to_le64(new_size); in __exfat_truncate()
179 ep2->dentry.stream.size = ep2->dentry.stream.valid_size; in __exfat_truncate()
186 ep2->dentry.stream.flags = ALLOC_FAT_CHAIN; in __exfat_truncate()
187 ep2->dentry.stream.start_clu = EXFAT_FREE_CLUSTER; in __exfat_truncate()
Dinode.c23 struct exfat_dentry *ep, *ep2; in __exfat_write_inode() local
49 ep2 = exfat_get_dentry_cached(es, 1); in __exfat_write_inode()
76 ep2->dentry.stream.valid_size = cpu_to_le64(on_disk_size); in __exfat_write_inode()
77 ep2->dentry.stream.size = ep2->dentry.stream.valid_size; in __exfat_write_inode()
Dnamei.c608 struct exfat_dentry *ep, *ep2; in exfat_find() local
653 ep2 = exfat_get_dentry_cached(es, 1); in exfat_find()
657 info->size = le64_to_cpu(ep2->dentry.stream.valid_size); in exfat_find()
659 info->start_clu = le32_to_cpu(ep2->dentry.stream.start_clu); in exfat_find()
670 info->flags = ep2->dentry.stream.flags; in exfat_find()
/kernel/linux/linux-6.6/fs/exfat/
Dinode.c23 struct exfat_dentry *ep, *ep2; in __exfat_write_inode() local
48 ep2 = exfat_get_dentry_cached(&es, ES_IDX_STREAM); in __exfat_write_inode()
75 ep2->dentry.stream.valid_size = cpu_to_le64(on_disk_size); in __exfat_write_inode()
76 ep2->dentry.stream.size = ep2->dentry.stream.valid_size; in __exfat_write_inode()
78 ep2->dentry.stream.flags = ei->flags; in __exfat_write_inode()
79 ep2->dentry.stream.start_clu = cpu_to_le32(ei->start_clu); in __exfat_write_inode()
81 ep2->dentry.stream.flags = ALLOC_FAT_CHAIN; in __exfat_write_inode()
82 ep2->dentry.stream.start_clu = EXFAT_FREE_CLUSTER; in __exfat_write_inode()
Dnamei.c617 struct exfat_dentry *ep, *ep2; in exfat_find() local
655 ep2 = exfat_get_dentry_cached(&es, ES_IDX_STREAM); in exfat_find()
659 info->size = le64_to_cpu(ep2->dentry.stream.valid_size); in exfat_find()
664 info->flags = ep2->dentry.stream.flags; in exfat_find()
666 le32_to_cpu(ep2->dentry.stream.start_clu); in exfat_find()
/kernel/linux/linux-5.10/scripts/kconfig/
Dexpr.c140 #define e2 (*ep2)
145 * Walks the two expression trees given in 'ep1' and 'ep2'. Any node that does
150 static void __expr_eliminate_eq(enum expr_type type, struct expr **ep1, struct expr **ep2) in __expr_eliminate_eq() argument
193 * Rewrites the expressions 'ep1' and 'ep2' to remove operands common to both.
197 * ep2: A && B && C -> ep2: C
200 * ep2: A || B || C -> ep2: C
203 * ep2: (BAR && B) && A -> ep2: BAR
206 * ep2: (C || B) && A -> ep2: y
221 void expr_eliminate_eq(struct expr **ep1, struct expr **ep2) in expr_eliminate_eq() argument
228 __expr_eliminate_eq(e1->type, ep1, ep2); in expr_eliminate_eq()
[all …]
/kernel/linux/linux-6.6/scripts/kconfig/
Dexpr.c140 #define e2 (*ep2)
145 * Walks the two expression trees given in 'ep1' and 'ep2'. Any node that does
150 static void __expr_eliminate_eq(enum expr_type type, struct expr **ep1, struct expr **ep2) in __expr_eliminate_eq() argument
193 * Rewrites the expressions 'ep1' and 'ep2' to remove operands common to both.
197 * ep2: A && B && C -> ep2: C
200 * ep2: A || B || C -> ep2: C
203 * ep2: (BAR && B) && A -> ep2: BAR
206 * ep2: (C || B) && A -> ep2: y
221 void expr_eliminate_eq(struct expr **ep1, struct expr **ep2) in expr_eliminate_eq() argument
228 __expr_eliminate_eq(e1->type, ep1, ep2); in expr_eliminate_eq()
[all …]
Dexpr.h295 void expr_eliminate_eq(struct expr **ep1, struct expr **ep2);
/kernel/linux/linux-5.10/drivers/media/dvb-frontends/
Dtda18271c2dd.c56 EP1, EP2, EP3, EP4, EP5, enumerator
397 state->m_Regs[EP2] = (RFBand << 5) | GainTaper; in CalibrateRF()
441 status = UpdateReg(state, EP2); in CalibrateRF()
447 status = UpdateReg(state, EP2); in CalibrateRF()
606 state->m_Regs[EP2] = (RFBand << 5) | Gain_Taper; in PowerScan()
608 status = UpdateReg(state, EP2); in PowerScan()
624 status = UpdateReg(state, EP2); /* Launch power measurement */ in PowerScan()
642 status = UpdateReg(state, EP2); /* Launch power measurement */ in PowerScan()
782 status = UpdateRegs(state, EP2, MD3); /* diff between sw and datasheet (ep3-md3) */ in FixedContentsI2CUpdate()
812 status = UpdateReg(state, EP2); in FixedContentsI2CUpdate()
[all …]
/kernel/linux/linux-6.6/drivers/media/dvb-frontends/
Dtda18271c2dd.c56 EP1, EP2, EP3, EP4, EP5, enumerator
397 state->m_Regs[EP2] = (RFBand << 5) | GainTaper; in CalibrateRF()
441 status = UpdateReg(state, EP2); in CalibrateRF()
447 status = UpdateReg(state, EP2); in CalibrateRF()
606 state->m_Regs[EP2] = (RFBand << 5) | Gain_Taper; in PowerScan()
608 status = UpdateReg(state, EP2); in PowerScan()
624 status = UpdateReg(state, EP2); /* Launch power measurement */ in PowerScan()
642 status = UpdateReg(state, EP2); /* Launch power measurement */ in PowerScan()
782 status = UpdateRegs(state, EP2, MD3); /* diff between sw and datasheet (ep3-md3) */ in FixedContentsI2CUpdate()
812 status = UpdateReg(state, EP2); in FixedContentsI2CUpdate()
[all …]
/kernel/linux/linux-5.10/sound/usb/6fire/
Dfirmware.c36 0xe4, 0x00, 0xe4, 0x00, /* alt 1: 228 EP2 and EP6 (7 fpp) */
37 0xa4, 0x01, 0xa4, 0x01, /* alt 2: 420 EP2 and EP6 (13 fpp)*/
38 0x94, 0x01, 0x5c, 0x02 /* alt 3: 404 EP2 and 604 EP6 (25 fpp) */
/kernel/linux/linux-6.6/sound/usb/6fire/
Dfirmware.c36 0xe4, 0x00, 0xe4, 0x00, /* alt 1: 228 EP2 and EP6 (7 fpp) */
37 0xa4, 0x01, 0xa4, 0x01, /* alt 2: 420 EP2 and EP6 (13 fpp)*/
38 0x94, 0x01, 0x5c, 0x02 /* alt 3: 404 EP2 and 604 EP6 (25 fpp) */
/kernel/linux/linux-5.10/drivers/usb/gadget/udc/
Ds3c2410_udc.h46 "ep1-bulk", "ep2-bulk", "ep3-bulk", "ep4-bulk",
Ddummy_hcd.c1605 struct dummy_ep *ep2; in handle_control_request() local
1668 ep2 = find_endpoint(dum, w_index); in handle_control_request()
1669 if (!ep2 || ep2->ep.name == ep0name) { in handle_control_request()
1673 ep2->halted = 1; in handle_control_request()
1716 ep2 = find_endpoint(dum, w_index); in handle_control_request()
1717 if (!ep2) { in handle_control_request()
1721 if (!ep2->wedged) in handle_control_request()
1722 ep2->halted = 0; in handle_control_request()
1740 ep2 = find_endpoint(dum, w_index); in handle_control_request()
1741 if (!ep2) { in handle_control_request()
[all …]
Dgoku_udc.c17 * - DMA works with ep1 (OUT transfers) and ep2 (IN transfers).
144 /* ep1/ep2 dma direction is chosen early; it works in the other in goku_ep_enable()
160 /* ep1 and ep2 can do double buffering and/or dma */ in goku_ep_enable()
437 /* use ep1/ep2 double-buffering for OUT */ in read_fifo()
1078 (mask & INT_EP2DATASET) ? " ep2" : "", in dump_intmask()
1253 static char *names [] = { "ep0", "ep1-bulk", "ep2-bulk", "ep3-bulk" }; in udc_reinit()
/kernel/linux/linux-6.6/drivers/usb/gadget/udc/
Ddummy_hcd.c1623 struct dummy_ep *ep2; in handle_control_request() local
1686 ep2 = find_endpoint(dum, w_index); in handle_control_request()
1687 if (!ep2 || ep2->ep.name == ep0name) { in handle_control_request()
1691 ep2->halted = 1; in handle_control_request()
1734 ep2 = find_endpoint(dum, w_index); in handle_control_request()
1735 if (!ep2) { in handle_control_request()
1739 if (!ep2->wedged) in handle_control_request()
1740 ep2->halted = 0; in handle_control_request()
1758 ep2 = find_endpoint(dum, w_index); in handle_control_request()
1759 if (!ep2) { in handle_control_request()
[all …]
Dgoku_udc.c17 * - DMA works with ep1 (OUT transfers) and ep2 (IN transfers).
144 /* ep1/ep2 dma direction is chosen early; it works in the other in goku_ep_enable()
160 /* ep1 and ep2 can do double buffering and/or dma */ in goku_ep_enable()
437 /* use ep1/ep2 double-buffering for OUT */ in read_fifo()
1080 (mask & INT_EP2DATASET) ? " ep2" : "", in dump_intmask()
1255 static char *names [] = { "ep0", "ep1-bulk", "ep2-bulk", "ep3-bulk" }; in udc_reinit()
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/media/i2c/
Dst,st-mipid02.txt74 ep2: endpoint {
/kernel/linux/linux-6.6/Documentation/devicetree/bindings/media/i2c/
Dst,st-mipid02.yaml164 ep2: endpoint {
/kernel/linux/linux-6.6/drivers/media/platform/allegro-dvt/
Dallegro-mail.h232 u32 ep2; member
/kernel/linux/linux-5.10/drivers/staging/media/allegro-dvt/
Dallegro-mail.h229 u32 ep2; member
/kernel/linux/linux-5.10/drivers/net/wireless/ath/carl9170/
Dfwdesc.h27 /* command traps & notifications are send through EP2 */
/kernel/linux/linux-6.6/drivers/net/wireless/ath/carl9170/
Dfwdesc.h27 /* command traps & notifications are send through EP2 */

123