]> pilppa.com Git - linux-2.6-omap-h63xx.git/commitdiff
musb_hdrc: Fix OPT A error "B-OPT Did not detect reset after connecting"
authorTony Lindgren <tony@atomide.com>
Mon, 27 Aug 2007 07:04:30 +0000 (00:04 -0700)
committerTony Lindgren <tony@atomide.com>
Mon, 27 Aug 2007 07:04:30 +0000 (00:04 -0700)
Fix OPT A error "B-OPT Did not detect reset after connecting"

hub 1-0:1.0: hub_suspend
usb usb1: suspend fail, err -16
usb usb1: 'global' suspend -16
hub 1-0:1.0: activate --> -108

Signed-off-by: Tony Lindgren <tony@atomide.com>
drivers/usb/musb/musb_core.c

index f86fdcc339db5c3ee8cf4786afafa9d350034333..078e8856970f75114f6918ad1caaf375e4126b36 100644 (file)
@@ -341,6 +341,14 @@ void musb_hnp_stop(struct musb *musb)
                DBG(1, "HNP: Stopping in unknown state %s\n",
                        otg_state_string(musb));
        }
+
+       /*
+        * When returning to A state after HNP, avoid hub_port_rebounce(),
+        * which cause occasional OPT A "Did not receive reset after connect"
+        * errors.
+        */
+       musb->port1_status &=
+               ~(1 << USB_PORT_FEAT_C_CONNECTION);
 }
 
 #endif