Home | History | Annotate | Download | only in host

Lines Matching refs:ed_p

320 	 __u32 *ed_p;
323 ed_p = &(ohci->hcca->int_table [i]);
324 if (*ed_p == 0)
326 invalidate_dcache_ed(ed_p);
328 while (*ed_p != 0 && j--) {
329 ed_t *ed = (ed_t *)m32_swap(ed_p);
332 ed_p = &ed->hwNextED;
671 __u32 *ed_p;
722 for (ed_p = &(ohci->hcca->int_table[\
724 (*ed_p != 0) &&
725 (((ed_t *)ed_p)->int_interval >= interval);
726 ed_p = &(((ed_t *)ed_p)->hwNextED))
728 ((ed_t *)ed_p)->int_interval);
729 ed->hwNextED = *ed_p;
731 *ed_p = m32_swap((unsigned long)ed);
748 __u32 *ed_p = &ohci->hcca->int_table [index];
751 while (*ed_p != 0) {
753 m32_swap((unsigned long)ed_p)) == ed) {
754 *ed_p = ed->hwNextED;
755 aligned_ed_p = (unsigned long)ed_p;
761 ed_p = &(((struct ed *)(uintptr_t)
762 m32_swap((unsigned long)ed_p))->hwNextED);