Home
last modified time | relevance | path

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

/openbmc/u-boot/drivers/usb/gadget/
H A Dci_udc.c302 if (ci_req->b_buf) in ci_ep_free_request()
303 free(ci_req->b_buf); in ci_ep_free_request()
381 if (ci_req->b_buf && req->length > ci_req->b_len) { in ci_bounce()
382 free(ci_req->b_buf); in ci_bounce()
383 ci_req->b_buf = 0; in ci_bounce()
385 if (!ci_req->b_buf) { in ci_bounce()
387 ci_req->b_buf = memalign(ARCH_DMA_MINALIGN, ci_req->b_len); in ci_bounce()
388 if (!ci_req->b_buf) in ci_bounce()
392 ci_req->hw_buf = ci_req->b_buf; in ci_bounce()
H A Dci_udc.h84 uint8_t *b_buf; member