Commit 188482b7 authored by David Brownell's avatar David Brownell Committed by Greg Kroah-Hartman

[PATCH] ohci, rm sparc64 oops

The recent "unlink cleanups" patch had a problem
with bitmask byteswapping.
parent 39c5c63d
......@@ -938,7 +938,7 @@ static void finish_unlinks (struct ohci_hcd *ohci, u16 tick)
/* ED's now officially unlinked, hc doesn't see */
ed->state = ED_IDLE;
ed->hwINFO &= ~ED_SKIP;
ed->hwHeadP &= ~cpu_to_le32 (ED_H);
ed->hwHeadP &= ~ED_H;
ed->hwNextED = 0;
/* but if there's work queued, reschedule */
......
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