]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
musb: sunxi: Force EP0 on re-enable
authorMaxime Ripard <maxime.ripard@free-electrons.com>
Tue, 4 Aug 2015 15:04:10 +0000 (17:04 +0200)
committerLothar Waßmann <LW@KARO-electronics.de>
Thu, 10 Sep 2015 06:00:58 +0000 (08:00 +0200)
Currently, the second use of a gadget will fail, while the first one works.

Forcing the EP0 at every enable fix this issue.

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
drivers/usb/musb-new/sunxi.c

index 85ac28dfd9a94557f995198069b95c317da1b8a4..16a264a9dded1e6de16e1131b5042fe8c80be903 100644 (file)
@@ -200,6 +200,9 @@ static int sunxi_musb_enable(struct musb *musb)
 
        pr_debug("%s():\n", __func__);
 
+       musb_ep_select(musb->mregs, 0);
+       musb_writeb(musb->mregs, MUSB_FADDR, 0);
+
        if (enabled)
                return 0;