Home
last modified time | relevance | path

Searched refs:b_buf (Results 1 – 2 of 2) sorted by relevance

/rk3399_rockchip-uboot/drivers/usb/gadget/
H A Dci_udc.c299 if (ci_req->b_buf) in ci_ep_free_request()
300 free(ci_req->b_buf); in ci_ep_free_request()
378 if (ci_req->b_buf && req->length > ci_req->b_len) { in ci_bounce()
379 free(ci_req->b_buf); in ci_bounce()
380 ci_req->b_buf = 0; in ci_bounce()
382 if (!ci_req->b_buf) { in ci_bounce()
384 ci_req->b_buf = memalign(ARCH_DMA_MINALIGN, ci_req->b_len); in ci_bounce()
385 if (!ci_req->b_buf) in ci_bounce()
389 ci_req->hw_buf = ci_req->b_buf; in ci_bounce()
H A Dci_udc.h84 uint8_t *b_buf; member