Lines Matching refs:intr
1964 static void uea_dispatch_cmv_e1(struct uea_softc *sc, struct intr_pkt *intr)
1967 struct cmv_e1 *cmv = &intr->u.e1.s2.cmv;
2026 static void uea_dispatch_cmv_e4(struct uea_softc *sc, struct intr_pkt *intr)
2029 struct cmv_e4 *cmv = &intr->u.e4.s2.cmv;
2069 struct intr_pkt *intr)
2071 sc->pageno = intr->e1_bSwapPageNo;
2072 sc->ovl = intr->e1_bOvl >> 4 | intr->e1_bOvl << 4;
2077 struct intr_pkt *intr)
2079 sc->pageno = intr->e4_bSwapPageNo;
2089 struct intr_pkt *intr = urb->transfer_buffer;
2101 if (intr->bType != 0x08 || sc->booting) {
2106 switch (le16_to_cpu(intr->wInterrupt)) {
2108 sc->schedule_load_page(sc, intr);
2112 sc->dispatch_cmv(sc, intr);
2117 le16_to_cpu(intr->wInterrupt));
2129 struct intr_pkt *intr;
2161 intr = kmalloc(size, GFP_KERNEL);
2162 if (!intr)
2171 intr, size, uea_intr, sc,
2199 kfree(intr);