HomeSort by relevance Sort by last modified time
    Searched refs:b_buf (Results 1 - 2 of 2) sorted by null

  /external/u-boot/drivers/usb/gadget/
ci_udc.c 298 if (ci_req->b_buf)
299 free(ci_req->b_buf);
377 if (ci_req->b_buf && req->length > ci_req->b_len) {
378 free(ci_req->b_buf);
379 ci_req->b_buf = 0;
381 if (!ci_req->b_buf) {
383 ci_req->b_buf = memalign(ARCH_DMA_MINALIGN, ci_req->b_len);
384 if (!ci_req->b_buf)
388 ci_req->hw_buf = ci_req->b_buf;
ci_udc.h 84 uint8_t *b_buf; member in struct:ci_req
86 /* Buffer for the current transfer. Either req.buf/len or b_buf/len */

Completed in 100 milliseconds