Lines Matching defs:bush
218 m_bush_t bush;
384 vp = (m_addr_t) dma_alloc_coherent(mp->bush,
413 dma_free_coherent(mp->bush, PAGE_SIZE<<MEMO_PAGE_ORDER,
420 static inline m_pool_s *___get_dma_pool(m_bush_t bush)
423 for (mp = mp0.next; mp && mp->bush != bush; mp = mp->next);
427 static m_pool_s *___cre_dma_pool(m_bush_t bush)
433 mp->bush = bush;
454 static void *__m_calloc_dma(m_bush_t bush, int size, char *name)
461 mp = ___get_dma_pool(bush);
463 mp = ___cre_dma_pool(bush);
473 static void __m_free_dma(m_bush_t bush, void *m, int size, char *name)
479 mp = ___get_dma_pool(bush);
487 static m_addr_t __vtobus(m_bush_t bush, void *m)
496 mp = ___get_dma_pool(bush);