Home
last modified time | relevance | path

Searched refs:bdc_ep_array (Results 1 – 4 of 4) sorted by relevance

/linux/drivers/usb/gadget/udc/bdc/
H A Dbdc_udc.c119 bdc->bdc_ep_array[1]->desc = &bdc_gadget_ep0_desc; in bdc_uspc_connected()
120 ret = bdc_config_ep(bdc, bdc->bdc_ep_array[1]); in bdc_uspc_connected()
123 bdc->bdc_ep_array[1]->usb_ep.desc = &bdc_gadget_ep0_desc; in bdc_uspc_connected()
124 bdc->bdc_ep_array[1]->flags |= BDC_EP_ENABLED; in bdc_uspc_connected()
138 ep = bdc->bdc_ep_array[1]; in bdc_uspc_disconnected()
554 bdc->bdc_ep_array[1]->desc = &bdc_gadget_ep0_desc; in bdc_udc_init()
559 ret = bdc_ep_enable(bdc->bdc_ep_array[1]); in bdc_udc_init()
562 bdc->bdc_ep_array[1]->name); in bdc_udc_init()
585 bdc_ep_disable(bdc->bdc_ep_array[1]); in bdc_udc_exit()
H A Dbdc_core.c297 bdc->bdc_ep_array[i]->flags = 0; in bdc_mem_init()
330 kfree(bdc->bdc_ep_array); in bdc_mem_free()
335 bdc->bdc_ep_array = NULL; in bdc_mem_free()
400 bdc->bdc_ep_array = kcalloc(bdc->num_eps, sizeof(struct bdc_ep *), in bdc_mem_alloc()
402 if (!bdc->bdc_ep_array) in bdc_mem_alloc()
H A Dbdc_cmd.c304 ep = bdc->bdc_ep_array[epnum]; in bdc_ep_clear_stall()
341 ep = bdc->bdc_ep_array[epnum]; in bdc_stop_ep()
H A Dbdc.h420 struct bdc_ep **bdc_ep_array; member