Lines Matching full:phase
54 enum fsc_phase phase; /* what we're currently trying to do */ member
97 if (state->phase == idle) in mac53c94_queue_lck()
153 if (state->phase != idle || state->current_req != NULL) in mac53c94_start()
178 state->phase = selecting; in mac53c94_start()
212 printk(KERN_DEBUG "mac53c94_intr, intr=%x stat=%x seq=%x phase=%d\n", in mac53c94_interrupt()
213 intr, stat, seq, state->phase); in mac53c94_interrupt()
225 printk(KERN_ERR "53c94: invalid cmd, intr=%x stat=%x seq=%x phase=%d\n", in mac53c94_interrupt()
226 intr, stat, seq, state->phase); in mac53c94_interrupt()
233 printk("53c94: bad error, intr=%x stat=%x seq=%x phase=%d\n", in mac53c94_interrupt()
234 intr, stat, seq, state->phase); in mac53c94_interrupt()
248 switch (state->phase) { in mac53c94_interrupt()
279 state->phase = dataing; in mac53c94_interrupt()
282 /* up to status phase already */ in mac53c94_interrupt()
284 state->phase = completing; in mac53c94_interrupt()
286 printk(KERN_DEBUG "in unexpected phase %x after cmd\n", in mac53c94_interrupt()
319 state->phase = completing; in mac53c94_interrupt()
331 state->phase = busfreeing; in mac53c94_interrupt()
341 printk(KERN_DEBUG "don't know about phase %d\n", state->phase); in mac53c94_interrupt()
355 state->phase = idle; in cmd_done()