ChangeSet 1.1500.8.14, 2004/02/02 13:44:55-08:00, [EMAIL PROTECTED]

[PATCH] USB storage: fix sign bug in usb-storage datafab

2.6 has no -fsigned-char anymore. there are 3 checks for info->lun < 0


 drivers/usb/storage/datafab.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


diff -Nru a/drivers/usb/storage/datafab.h b/drivers/usb/storage/datafab.h
--- a/drivers/usb/storage/datafab.h     Mon Feb  9 14:40:23 2004
+++ b/drivers/usb/storage/datafab.h     Mon Feb  9 14:40:23 2004
@@ -29,7 +29,7 @@
 struct datafab_info {
        unsigned long   sectors;        // total sector count
        unsigned long   ssize;          // sector size in bytes
-       char            lun;            // used for dual-slot readers
+       signed char     lun;            // used for dual-slot readers
        
        // the following aren't used yet
        unsigned char   sense_key;



-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
_______________________________________________
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to