Searched defs:cfd (Results 1 - 5 of 5) sorted by relevance

/drivers/net/can/
H A Dvcan.c74 struct canfd_frame *cfd = (struct canfd_frame *)skb->data; local
78 stats->rx_bytes += cfd->len;
89 struct canfd_frame *cfd = (struct canfd_frame *)skb->data; local
97 stats->tx_bytes += cfd->len;
111 stats->rx_bytes += cfd->len;
H A Ddev.c514 struct canfd_frame **cfd)
530 *cfd = (struct canfd_frame *)skb_put(skb, sizeof(struct canfd_frame));
531 memset(*cfd, 0, sizeof(struct canfd_frame));
513 alloc_canfd_skb(struct net_device *dev, struct canfd_frame **cfd) argument
/drivers/media/platform/ti-vpe/
H A Dvpdma.c450 static void dump_cfd(struct vpdma_cfd *cfd) argument
454 class = cfd_get_class(cfd);
462 cfd->dest_addr_offset);
465 pr_debug("word1: num_data_wrds = %d\n", cfd->block_len);
467 pr_debug("word2: payload_addr = 0x%08x\n", cfd->payload_addr);
470 "payload_len = %d\n", cfd_get_pkt_type(cfd),
471 cfd_get_direct(cfd), class, cfd_get_dest(cfd),
472 cfd_get_payload_len(cfd));
483 struct vpdma_cfd *cfd; local
510 struct vpdma_cfd *cfd; local
[all...]
H A Dvpdma_priv.h486 static inline int cfd_get_pkt_type(struct vpdma_cfd *cfd) argument
488 return cfd->ctl_payload_len >> CFD_PKT_TYPE_SHFT;
491 static inline bool cfd_get_direct(struct vpdma_cfd *cfd) argument
493 return (cfd->ctl_payload_len >> CFD_DIRECT_SHFT) & CFD_DIRECT_MASK;
496 static inline bool cfd_get_class(struct vpdma_cfd *cfd) argument
498 return (cfd->ctl_payload_len >> CFD_CLASS_SHFT) & CFD_CLASS_MASK;
501 static inline int cfd_get_dest(struct vpdma_cfd *cfd) argument
503 return (cfd->ctl_payload_len >> CFD_DEST_SHFT) & CFD_DEST_MASK;
506 static inline int cfd_get_payload_len(struct vpdma_cfd *cfd) argument
508 return cfd
[all...]
/drivers/usb/class/
H A Dcdc-acm.c1074 struct usb_cdc_country_functional_desc *cfd = NULL; local
1150 cfd = (struct usb_cdc_country_functional_desc *)buffer;
1417 if (cfd) { /* export the country data */
1418 acm->country_codes = kmalloc(cfd->bLength - 4, GFP_KERNEL);
1421 acm->country_code_size = cfd->bLength - 4;
1422 memcpy(acm->country_codes, (u8 *)&cfd->wCountyCode0,
1423 cfd->bLength - 4);
1424 acm->country_rel_date = cfd->iCountryCodeRelDate;

Completed in 110 milliseconds