Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 325843
b: refs/heads/master
c: 6799047
h: refs/heads/master
i:
  325841: 273e480
  325839: 77e0262
v: v3
  • Loading branch information
Wei Yongjun authored and Greg Kroah-Hartman committed Sep 5, 2012
1 parent 24aa5cd commit c957930
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 697d5c004e390102efbf9320a5416873679bea81
refs/heads/master: 67990472c77b06cc591dd59923542f64da91453d
4 changes: 2 additions & 2 deletions trunk/drivers/usb/serial/mos7720.c
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ static void send_deferred_urbs(unsigned long _mos_parport)
int ret_val;
unsigned long flags;
struct mos7715_parport *mos_parport = (void *)_mos_parport;
struct urbtracker *urbtrack;
struct urbtracker *urbtrack, *tmp;
struct list_head *cursor, *next;

/* if release function ran, game over */
Expand Down Expand Up @@ -312,7 +312,7 @@ static void send_deferred_urbs(unsigned long _mos_parport)
/* move contents of deferred_urbs list to active_urbs list and submit */
list_for_each_safe(cursor, next, &mos_parport->deferred_urbs)
list_move_tail(cursor, &mos_parport->active_urbs);
list_for_each_entry(urbtrack, &mos_parport->active_urbs,
list_for_each_entry_safe(urbtrack, tmp, &mos_parport->active_urbs,
urblist_entry) {
ret_val = usb_submit_urb(urbtrack->urb, GFP_ATOMIC);
dbg("%s: urb submitted", __func__);
Expand Down

0 comments on commit c957930

Please sign in to comment.