提交 6ce4560a 编写于 作者: J Jan Andersson 提交者: Greg Kroah-Hartman

usb: fix usbtest halt check on big endian systems

usbtest did not swap the received status information when checking for
a non-zero value and failed to discover halted endpoints on big endian
systems.

Cc: stable <stable@kernel.org>
Signed-off-by: NJan Andersson <jan@gaisler.com>
Acked-by: NDavid Brownell <david-b@pacbell.net>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 4b24f91c
...@@ -1151,6 +1151,7 @@ static int verify_halted (int ep, struct urb *urb) ...@@ -1151,6 +1151,7 @@ static int verify_halted (int ep, struct urb *urb)
dbg ("ep %02x couldn't get halt status, %d", ep, retval); dbg ("ep %02x couldn't get halt status, %d", ep, retval);
return retval; return retval;
} }
le16_to_cpus(&status);
if (status != 1) { if (status != 1) {
dbg ("ep %02x bogus status: %04x != 1", ep, status); dbg ("ep %02x bogus status: %04x != 1", ep, status);
return -EINVAL; return -EINVAL;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册