Home
last modified time | relevance | path

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

/openbmc/linux/drivers/media/pci/tw686x/
H A Dtw686x-audio.c136 struct tw686x_audio_buf *p_buf, *b_buf; in tw686x_pcm_prepare() local
190 b_buf = list_first_entry(&ac->buf_list, struct tw686x_audio_buf, list); in tw686x_pcm_prepare()
191 list_move_tail(&b_buf->list, &ac->buf_list); in tw686x_pcm_prepare()
194 ac->curr_bufs[1] = b_buf; in tw686x_pcm_prepare()
199 reg_write(dev, ADMA_B_ADDR[ac->ch], b_buf->dma); in tw686x_pcm_prepare()
/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