This is a note to let you know that I've just added the patch titled

    usb/gadget: at91sam9g20 fix end point max packet size

to my usb git tree which can be found at
    git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6.git
in the usb-next branch.

The patch will show up in the next release of the linux-next tree
(usually sometime within the next 24 hours during the week.)

The patch will also will be merged in the next major kernel release
during the merge window.

If you have any questions about this process, please let me know.


>From bf1f0a05d472e33dda8e5e69525be1584cdbd03a Mon Sep 17 00:00:00 2001
From: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Fri, 13 May 2011 17:03:02 +0200
Subject: usb/gadget: at91sam9g20 fix end point max packet size

on 9g20 they are the same as the 9260

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Acked-by: Nicolas Ferre <[email protected]>
Cc: stable <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
 drivers/usb/gadget/at91_udc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/gadget/at91_udc.c b/drivers/usb/gadget/at91_udc.c
index 9b7cdb1..41dc093 100644
--- a/drivers/usb/gadget/at91_udc.c
+++ b/drivers/usb/gadget/at91_udc.c
@@ -1767,7 +1767,7 @@ static int __init at91udc_probe(struct platform_device 
*pdev)
        }
 
        /* newer chips have more FIFO memory than rm9200 */
-       if (cpu_is_at91sam9260()) {
+       if (cpu_is_at91sam9260() || cpu_is_at91sam9g20()) {
                udc->ep[0].maxpacket = 64;
                udc->ep[3].maxpacket = 64;
                udc->ep[4].maxpacket = 512;
-- 
1.7.4.2


_______________________________________________
stable mailing list
[email protected]
http://linux.kernel.org/mailman/listinfo/stable

Reply via email to