Commit 12c2451c authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman Committed by Vojtech Pavlik

USB: fix flag name in ohci driver due to previous patch.

parent 34271b63
...@@ -658,7 +658,7 @@ static void td_submit_urb (struct urb *urb) ...@@ -658,7 +658,7 @@ static void td_submit_urb (struct urb *urb)
data += 4096; data_len -= 4096; cnt++; data += 4096; data_len -= 4096; cnt++;
} }
/* maybe avoid ED halt on final TD short read */ /* maybe avoid ED halt on final TD short read */
if (!(urb->transfer_flags & USB_DISABLE_SPD)) if (!(urb->transfer_flags & URB_SHORT_NOT_OK))
info |= TD_R; info |= TD_R;
td_fill (ohci, info | (cnt ? TD_T_TOGGLE : toggle), td_fill (ohci, info | (cnt ? TD_T_TOGGLE : toggle),
data, data_len, urb, cnt); data, data_len, urb, cnt);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment