aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/misc/usbtest.c
diff options
context:
space:
mode:
authorJan Andersson <[email protected]>2008-01-08 15:39:49 +0000
committerGreg Kroah-Hartman <[email protected]>2008-02-01 22:34:46 +0000
commit6ce4560a39f72e45a273c652ee116f8b0fc6386f (patch)
treeceb4ea697b566f6ce903dde22441ba5a91b7a2d1 /drivers/usb/misc/usbtest.c
parentUSB: storage: Add unusual_dev for HP r707 (diff)
downloadkernel-6ce4560a39f72e45a273c652ee116f8b0fc6386f.tar.gz
kernel-6ce4560a39f72e45a273c652ee116f8b0fc6386f.zip
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 <[email protected]> Signed-off-by: Jan Andersson <[email protected]> Acked-by: David Brownell <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'drivers/usb/misc/usbtest.c')
-rw-r--r--drivers/usb/misc/usbtest.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/misc/usbtest.c b/drivers/usb/misc/usbtest.c
index ea3162146481..81755d06a419 100644
--- a/drivers/usb/misc/usbtest.c
+++ b/drivers/usb/misc/usbtest.c
@@ -1151,6 +1151,7 @@ static int verify_halted (int ep, struct urb *urb)
dbg ("ep %02x couldn't get halt status, %d", ep, retval);
return retval;
}
+ le16_to_cpus(&status);
if (status != 1) {
dbg ("ep %02x bogus status: %04x != 1", ep, status);
return -EINVAL;