Lines Matching defs:bush
213 m_bush_t bush;
379 vp = (m_addr_t) dma_alloc_coherent(mp->bush,
408 dma_free_coherent(mp->bush, PAGE_SIZE<<MEMO_PAGE_ORDER,
415 static inline m_pool_s *___get_dma_pool(m_bush_t bush)
418 for (mp = mp0.next; mp && mp->bush != bush; mp = mp->next);
422 static m_pool_s *___cre_dma_pool(m_bush_t bush)
428 mp->bush = bush;
449 static void *__m_calloc_dma(m_bush_t bush, int size, char *name)
456 mp = ___get_dma_pool(bush);
458 mp = ___cre_dma_pool(bush);
468 static void __m_free_dma(m_bush_t bush, void *m, int size, char *name)
474 mp = ___get_dma_pool(bush);
482 static m_addr_t __vtobus(m_bush_t bush, void *m)
491 mp = ___get_dma_pool(bush);