Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d1bbb60007597b920beca72cd0b413d10290310a
Commit:     d1bbb60007597b920beca72cd0b413d10290310a
Parent:     8356f3113d2628c98a58180ca183345474a9d011
Author:     Pete Zaitcev <[EMAIL PROTECTED]>
AuthorDate: Sun Feb 11 13:56:13 2007 -0800
Committer:  Greg Kroah-Hartman <[EMAIL PROTECTED]>
CommitDate: Fri Feb 16 15:32:21 2007 -0800

    USB: make usb_iso_packet_descriptor.status signed
    
    The status in usb_iso_packet_descriptor should be signed, for the benefit
    of someone who casts to a long or makes other benign misstep (the principle
    of least surprise).
    
    Signed-off-by: Pete Zaitcev <[EMAIL PROTECTED]>
    Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]>
---
 include/linux/usb.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/linux/usb.h b/include/linux/usb.h
index b5c226a..a8e8d1e 100644
--- a/include/linux/usb.h
+++ b/include/linux/usb.h
@@ -935,7 +935,7 @@ struct usb_iso_packet_descriptor {
        unsigned int offset;
        unsigned int length;            /* expected length */
        unsigned int actual_length;
-       unsigned int status;
+       int status;
 };
 
 struct urb;
-
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