Lines Matching refs:epf
416 rt_err_t rt_pci_ep_add_epf(struct rt_pci_ep *ep, struct rt_pci_epf *epf) in rt_pci_ep_add_epf() argument
420 if (!ep || !epf || !epf->name) in rt_pci_ep_add_epf()
425 if (epf->func_no > ep->max_functions - 1) in rt_pci_ep_add_epf()
428 epf->name, epf->func_no, ep->name, ep->max_functions); in rt_pci_ep_add_epf()
433 epf->ep = ep; in rt_pci_ep_add_epf()
434 rt_list_init(&epf->list); in rt_pci_ep_add_epf()
438 if (!rt_bitmap_test_bit(ep->functions_map, epf->func_no)) in rt_pci_ep_add_epf()
440 rt_bitmap_set_bit(ep->functions_map, epf->func_no); in rt_pci_ep_add_epf()
441 rt_list_insert_before(&ep->epf_nodes, &epf->list); in rt_pci_ep_add_epf()
446 LOG_E("%s function No(%d) is repeating", epf->name, epf->func_no); in rt_pci_ep_add_epf()
454 rt_err_t rt_pci_ep_remove_epf(struct rt_pci_ep *ep, struct rt_pci_epf *epf) in rt_pci_ep_remove_epf() argument
456 if (!ep || !epf) in rt_pci_ep_remove_epf()
462 rt_bitmap_clear_bit(ep->functions_map, epf->func_no); in rt_pci_ep_remove_epf()
463 rt_list_remove(&epf->list); in rt_pci_ep_remove_epf()