From patchwork Thu Feb 24 07:43:00 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yoshihiro Shimoda X-Patchwork-Id: 586731 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 p1O7h8A9019773 for ; Thu, 24 Feb 2011 07:43:08 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752928Ab1BXHnF (ORCPT ); Thu, 24 Feb 2011 02:43:05 -0500 Received: from relmlor1.renesas.com ([210.160.252.171]:49963 "EHLO relmlor1.renesas.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752726Ab1BXHnE (ORCPT ); Thu, 24 Feb 2011 02:43:04 -0500 Received: from relmlir2.idc.renesas.com ([10.200.68.152]) by relmlor1.idc.renesas.com ( SJSMS) with ESMTP id <0LH400LCD2RP8ZA0@relmlor1.idc.renesas.com>; Thu, 24 Feb 2011 16:43:01 +0900 (JST) Received: from relmlac3.idc.renesas.com ([10.200.69.23]) by relmlir2.idc.renesas.com ( SJSMS) with ESMTP id <0LH4009IU2RPQD80@relmlir2.idc.renesas.com>; Thu, 24 Feb 2011 16:43:01 +0900 (JST) Received: by relmlac3.idc.renesas.com (Postfix, from userid 0) id E09AC18080; Thu, 24 Feb 2011 16:43:00 +0900 (JST) Received: from relmlac3.idc.renesas.com (localhost [127.0.0.1]) by relmlac3.idc.renesas.com (Postfix) with ESMTP id DAC4B18071; Thu, 24 Feb 2011 16:43:00 +0900 (JST) Received: from relmlii1.idc.renesas.com [10.200.68.65] by relmlac3.idc.renesas.com with ESMTP id SAD04734; Thu, 24 Feb 2011 16:43:00 +0900 X-IronPort-AV: E=Sophos; i="4.62,215,1297004400"; d="scan'208"; a="13196937" Received: from unknown (HELO [172.30.8.157]) ([172.30.8.157]) by relmlii1.idc.renesas.com with ESMTP; Thu, 24 Feb 2011 16:43:00 +0900 Message-id: <4D660C04.9070800@renesas.com> Date: Thu, 24 Feb 2011 16:43:00 +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 07:43:08 +0000 (UTC) diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index 4c77a81..b5aae43 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_SH7785) #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"