Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 80936
b: refs/heads/master
c: 85c5798
h: refs/heads/master
v: v3
  • Loading branch information
Stefan Richter committed Jan 30, 2008
1 parent 10728bf commit 6acbeb4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4e6343a10b6afb5b036db35c4a0f0aa1333232e1
refs/heads/master: 85c5798b09e9248f29edbc42f10b99842661e85c
12 changes: 8 additions & 4 deletions trunk/drivers/ieee1394/ohci1394.c
Original file line number Diff line number Diff line change
Expand Up @@ -2126,10 +2126,14 @@ static void ohci_schedule_iso_tasklets(struct ti_ohci *ohci,
list_for_each_entry(t, &ohci->iso_tasklet_list, link) {
mask = 1 << t->context;

if (t->type == OHCI_ISO_TRANSMIT && tx_event & mask)
tasklet_schedule(&t->tasklet);
else if (rx_event & mask)
tasklet_schedule(&t->tasklet);
if (t->type == OHCI_ISO_TRANSMIT) {
if (tx_event & mask)
tasklet_schedule(&t->tasklet);
} else {
/* OHCI_ISO_RECEIVE or OHCI_ISO_MULTICHANNEL_RECEIVE */
if (rx_event & mask)
tasklet_schedule(&t->tasklet);
}
}

spin_unlock_irqrestore(&ohci->iso_tasklet_list_lock, flags);
Expand Down

0 comments on commit 6acbeb4

Please sign in to comment.