]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
usb/gadget: at91sam9g20 fix end point max packet size
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Fri, 13 May 2011 15:03:02 +0000 (17:03 +0200)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Thu, 17 May 2012 15:20:35 +0000 (11:20 -0400)
commit bf1f0a05d472e33dda8e5e69525be1584cdbd03a upstream.

on 9g20 they are the same as the 9260

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
drivers/usb/gadget/at91_udc.c

index df1bae9b048e4585f13f4b06ff720c497e667c54..ad617d993cc964b798a08f82ae87ac644ad85036 100644 (file)
@@ -1694,7 +1694,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;