The patch titled
     usb/storage/initializers.c: fix signedness difference
has been added to the -mm tree.  Its filename is
     usb-storage-initializersc-fix-signedness-difference.patch

*** Remember to use Documentation/SubmitChecklist when testing your code ***

See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this

------------------------------------------------------
Subject: usb/storage/initializers.c: fix signedness difference
From: Marcin Ślusarz <[EMAIL PROTECTED]>

usb/storage/initializers.c: fix signedness difference

Signed-off-by: Marcin Ślusarz <[EMAIL PROTECTED]>
Cc: Greg KH <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 drivers/usb/storage/initializers.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff -puN 
drivers/usb/storage/initializers.c~usb-storage-initializersc-fix-signedness-difference
 drivers/usb/storage/initializers.c
--- 
a/drivers/usb/storage/initializers.c~usb-storage-initializersc-fix-signedness-difference
+++ a/drivers/usb/storage/initializers.c
@@ -66,7 +66,8 @@ int usb_stor_ucr61s2b_init(struct us_dat
 {
        struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap*) us->iobuf;
        struct bulk_cs_wrap *bcs = (struct bulk_cs_wrap*) us->iobuf;
-       int res, partial;
+       int res;
+       unsigned int partial;
        static char init_string[] = "\xec\x0a\x06\x00$PCCHIPS";
 
        US_DEBUGP("Sending UCR-61S2B initialization packet...\n");
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

git-alsa.patch
usb-storage-initializersc-fix-signedness-difference.patch
vgacon-fix-sparse-warning-about-shadowing-i-symbol.patch
fbcon-fix-sparse-warning-about-shadowing-p-symbol.patch
fbcon-fix-sparse-warning-about-shadowing-rotate-symbol.patch
logo-move-declarations-of-logos-to-linux_logoh.patch
logo-move-declarations-of-logos-to-linux_logoh-fix.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to