From patchwork Fri Apr 23 23:11:29 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Lindgren X-Patchwork-Id: 94791 X-Patchwork-Delegate: tony@atomide.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o3NNBGX2021106 for ; Fri, 23 Apr 2010 23:13:21 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754962Ab0DWXLa (ORCPT ); Fri, 23 Apr 2010 19:11:30 -0400 Received: from mho-01-ewr.mailhop.org ([204.13.248.71]:61620 "EHLO mho-01-ewr.mailhop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754958Ab0DWXL3 (ORCPT ); Fri, 23 Apr 2010 19:11:29 -0400 Received: from c-67-160-239-110.hsd1.ca.comcast.net ([67.160.239.110] helo=baageli.muru.com) by mho-01-ewr.mailhop.org with esmtpa (Exim 4.68) (envelope-from ) id 1O5S1x-00016L-1f; Fri, 23 Apr 2010 23:11:29 +0000 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 67.160.239.110 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/mailhop/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX19b71RQctarQG4nYWVCOQzg Subject: [PATCH 11/28] omap: Devkit8000: Fix wrong usb port on Devkit8000 To: linux-arm-kernel@lists.infradead.org From: Tony Lindgren Cc: Thomas Weber , linux-omap@vger.kernel.org, Anand Gadiyar Date: Fri, 23 Apr 2010 16:11:29 -0700 Message-ID: <20100423231129.31953.42867.stgit@baageli.muru.com> In-Reply-To: <20100423230829.31953.17334.stgit@baageli.muru.com> References: <20100423230829.31953.17334.stgit@baageli.muru.com> User-Agent: StGit/0.15 MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Fri, 23 Apr 2010 23:13:21 +0000 (UTC) diff --git a/arch/arm/mach-omap2/board-devkit8000.c b/arch/arm/mach-omap2/board-devkit8000.c index 5bfc13b..db4c093 100644 --- a/arch/arm/mach-omap2/board-devkit8000.c +++ b/arch/arm/mach-omap2/board-devkit8000.c @@ -639,12 +639,12 @@ static struct omap_musb_board_data musb_board_data = { static const struct ehci_hcd_omap_platform_data ehci_pdata __initconst = { .port_mode[0] = EHCI_HCD_OMAP_MODE_PHY, - .port_mode[1] = EHCI_HCD_OMAP_MODE_PHY, + .port_mode[1] = EHCI_HCD_OMAP_MODE_UNKNOWN, .port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN, .phy_reset = true, .reset_gpio_port[0] = -EINVAL, - .reset_gpio_port[1] = 147, + .reset_gpio_port[1] = -EINVAL, .reset_gpio_port[2] = -EINVAL };