Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6ce4560a39f72e45a273c652ee116f8b0fc6386f
Commit:     6ce4560a39f72e45a273c652ee116f8b0fc6386f
Parent:     4b24f91c24e27ec7746549d1180b9cbd18f06000
Author:     Jan Andersson <[EMAIL PROTECTED]>
AuthorDate: Tue Jan 8 16:39:49 2008 +0100
Committer:  Greg Kroah-Hartman <[EMAIL PROTECTED]>
CommitDate: Fri Feb 1 14:34:46 2008 -0800

    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]>
---
 drivers/usb/misc/usbtest.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/usb/misc/usbtest.c b/drivers/usb/misc/usbtest.c
index ea31621..81755d0 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;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to