From patchwork Thu Feb 24 09:47:10 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yoshihiro Shimoda X-Patchwork-Id: 586881 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p1O9jWR6025876 for ; Thu, 24 Feb 2011 09:47:13 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756065Ab1BXJrN (ORCPT ); Thu, 24 Feb 2011 04:47:13 -0500 Received: from relmlor2.renesas.com ([210.160.252.172]:32774 "EHLO relmlor2.renesas.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755984Ab1BXJrM (ORCPT ); Thu, 24 Feb 2011 04:47:12 -0500 Received: from relmlir4.idc.renesas.com ([10.200.68.154]) by relmlor2.idc.renesas.com ( SJSMS) with ESMTP id <0LH4002MB8IM0I10@relmlor2.idc.renesas.com>; Thu, 24 Feb 2011 18:47:10 +0900 (JST) Received: from relmlac2.idc.renesas.com ([10.200.69.22]) by relmlir4.idc.renesas.com ( SJSMS) with ESMTP id <0LH400I7E8ILY560@relmlir4.idc.renesas.com>; Thu, 24 Feb 2011 18:47:10 +0900 (JST) Received: by relmlac2.idc.renesas.com (Postfix, from userid 0) id C31AA2808A; Thu, 24 Feb 2011 18:47:10 +0900 (JST) Received: from relmlac2.idc.renesas.com (localhost [127.0.0.1]) by relmlac2.idc.renesas.com (Postfix) with ESMTP id BC72E28070; Thu, 24 Feb 2011 18:47:10 +0900 (JST) Received: from relmlii2.idc.renesas.com [10.200.68.66] by relmlac2.idc.renesas.com with ESMTP id UAK04191; Thu, 24 Feb 2011 18:47:10 +0900 X-IronPort-AV: E=Sophos; i="4.62,215,1297004400"; d="scan'208"; a="13322956" Received: from unknown (HELO [172.30.8.157]) ([172.30.8.157]) by relmlii2.idc.renesas.com with ESMTP; Thu, 24 Feb 2011 18:47:10 +0900 Message-id: <4D66291E.1080204@renesas.com> Date: Thu, 24 Feb 2011 18:47:10 +0900 From: Yoshihiro Shimoda User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; ja; rv:1.9.2.13) Gecko/20101207 Thunderbird/3.1.7 MIME-version: 1.0 To: Greg Kroah-Hartman , David Brownell Cc: USB list , SH-Linux Subject: [PATCH] usb: add EHCI and OHCI support for SH7757 Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: 7bit Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Thu, 24 Feb 2011 09:47:19 +0000 (UTC) diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index 4c77a81..b396567 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c @@ -1184,7 +1184,8 @@ MODULE_LICENSE ("GPL"); #define PLATFORM_DRIVER ehci_mxc_driver #endif -#ifdef CONFIG_CPU_SUBTYPE_SH7786 +#if defined(CONFIG_CPU_SUBTYPE_SH7757) || \ + defined(CONFIG_CPU_SUBTYPE_SH7786) #include "ehci-sh.c" #define PLATFORM_DRIVER ehci_hcd_sh_driver #endif diff --git a/drivers/usb/host/ohci-hcd.c b/drivers/usb/host/ohci-hcd.c index 759a12f..257974e 100644 --- a/drivers/usb/host/ohci-hcd.c +++ b/drivers/usb/host/ohci-hcd.c @@ -1070,6 +1070,7 @@ MODULE_LICENSE ("GPL"); #if defined(CONFIG_CPU_SUBTYPE_SH7720) || \ defined(CONFIG_CPU_SUBTYPE_SH7721) || \ + defined(CONFIG_CPU_SUBTYPE_SH7757) || \ defined(CONFIG_CPU_SUBTYPE_SH7763) || \ defined(CONFIG_CPU_SUBTYPE_SH7786) #include "ohci-sh.c"