Home
last modified time | relevance | path

Searched refs:now_frame (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/usb/host/
H A Dehci-sched.c1268 if (itd->frame == ehci->now_frame) in itd_urb_transaction()
2069 if (sitd->frame == ehci->now_frame) in sitd_urb_transaction()
2362 unsigned uf, now_frame, frame; in scan_isoc() local
2375 now_frame = (uf >> 3) & fmask; in scan_isoc()
2378 now_frame = (ehci->last_iso_frame - 1) & fmask; in scan_isoc()
2381 ehci->now_frame = now_frame; in scan_isoc()
2402 if (frame == now_frame && live) { in scan_isoc()
2443 if (((frame == now_frame) || in scan_isoc()
2444 (((frame + 1) & fmask) == now_frame)) in scan_isoc()
2489 if (frame == now_frame) in scan_isoc()
/linux/drivers/usb/fotg210/
H A Dfotg210-hcd.c4097 if (itd->frame == fotg210->now_frame) in itd_urb_transaction()
4573 unsigned now_frame, bool live) in scan_frame_queue() argument
4595 if (frame == now_frame && live) { in scan_frame_queue()
4644 unsigned uf, now_frame, frame, ret; in scan_isoc() local
4655 now_frame = (uf >> 3) & fmask; in scan_isoc()
4658 now_frame = (fotg210->next_frame - 1) & fmask; in scan_isoc()
4661 fotg210->now_frame = now_frame; in scan_isoc()
4668 now_frame, live); in scan_isoc()
4671 if (frame == now_frame) in scan_isoc()
4675 fotg210->next_frame = now_frame; in scan_isoc()
H A Dfotg210-hcd.h125 unsigned now_frame; /* frame from HC hardware */ member