From patchwork Tue Sep 22 13:12:12 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ajay Kumar Gupta X-Patchwork-Id: 49254 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n8MDCPBR011274 for ; Tue, 22 Sep 2009 13:12:26 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756541AbZIVNMV (ORCPT ); Tue, 22 Sep 2009 09:12:21 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756539AbZIVNMV (ORCPT ); Tue, 22 Sep 2009 09:12:21 -0400 Received: from devils.ext.ti.com ([198.47.26.153]:55549 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756499AbZIVNMU (ORCPT ); Tue, 22 Sep 2009 09:12:20 -0400 Received: from dbdp31.itg.ti.com ([172.24.170.98]) by devils.ext.ti.com (8.13.7/8.13.7) with ESMTP id n8MDCJhQ028743; Tue, 22 Sep 2009 08:12:19 -0500 Received: from psplinux050.india.ti.com (localhost [127.0.0.1]) by dbdp31.itg.ti.com (8.13.8/8.13.8) with ESMTP id n8MDCESa009355; Tue, 22 Sep 2009 18:42:15 +0530 (IST) Received: from psplinux050.india.ti.com (localhost [127.0.0.1]) by psplinux050.india.ti.com (8.13.1/8.13.1) with ESMTP id n8MDCEL9026548; Tue, 22 Sep 2009 18:42:14 +0530 Received: (from a0393629@localhost) by psplinux050.india.ti.com (8.13.1/8.13.1/Submit) id n8MDCEA8026513; Tue, 22 Sep 2009 18:42:14 +0530 From: Ajay Kumar Gupta To: linux-omap@vger.kernel.org Cc: felipe.balbi@nokia.com, david-b@pacbell.net, tony@atomide.com, Ajay Kumar Gupta Subject: [PATCH 4/4] ehci: update driver with another generic change Date: Tue, 22 Sep 2009 18:42:12 +0530 Message-Id: <1253625132-15050-4-git-send-email-ajay.gupta@ti.com> X-Mailer: git-send-email 1.6.2.4 In-Reply-To: <1253625132-15050-3-git-send-email-ajay.gupta@ti.com> References: <1253625132-15050-1-git-send-email-ajay.gupta@ti.com> <1253625132-15050-2-git-send-email-ajay.gupta@ti.com> <1253625132-15050-3-git-send-email-ajay.gupta@ti.com> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org Update the OMAP EHCI driver in accordance with below patch introduced in generic EHCI driver. commit 914b701280a76f96890ad63eb0fa99bf204b961c USB: EHCI: use the new clear_tt_buffer interface Without this EHCI becomes unusable when a compound device DELL USB keyboard)is connected and disconnected. Signed-off-by: Ajay Kumar Gupta --- drivers/usb/host/ehci-omap.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/usb/host/ehci-omap.c b/drivers/usb/host/ehci-omap.c index a10ecd9..2bf2fff 100644 --- a/drivers/usb/host/ehci-omap.c +++ b/drivers/usb/host/ehci-omap.c @@ -784,6 +784,8 @@ static const struct hc_driver ehci_omap_hc_driver = { .hub_control = ehci_hub_control, .bus_suspend = ehci_bus_suspend, .bus_resume = ehci_bus_resume, + + .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete, }; MODULE_ALIAS("platform:omap-ehci");