Commit 7e6ec117 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

USB uhci bug fix.

use proper GFP flag setting for submitting a urb.
parent 5facf0a0
......@@ -2386,7 +2386,7 @@ static void uhci_call_completion(struct urb *urb)
} else {
if (is_ring && !killed) {
urb->dev = dev;
uhci_submit_urb(urb, GFP_KERNEL);
uhci_submit_urb(urb, GFP_ATOMIC);
} else {
/* We decrement the usage count after we're done */
/* with everything */
......
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