From patchwork Tue May 26 03:17:05 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yoshihiro Shimoda X-Patchwork-Id: 25909 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 n4Q3GjNG006080 for ; Tue, 26 May 2009 03:17:14 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753601AbZEZDRL (ORCPT ); Mon, 25 May 2009 23:17:11 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753709AbZEZDRL (ORCPT ); Mon, 25 May 2009 23:17:11 -0400 Received: from mail.renesas.com ([202.234.163.13]:42183 "EHLO mail02.idc.renesas.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753601AbZEZDRK (ORCPT ); Mon, 25 May 2009 23:17:10 -0400 X-AuditID: ac140385-00000007000002de-2e-4a1b5f3512ab Received: from guardian01.idc.renesas.com ([172.20.8.200]) by mail02.idc.renesas.com (sendmail) with ESMTP id n4Q3H9eF023502; Tue, 26 May 2009 12:17:09 +0900 (JST) Received: (from root@localhost) by guardian01.idc.renesas.com with id n4Q3H6MB004886; Tue, 26 May 2009 12:17:06 +0900 (JST) Received: from mta02.idc.renesas.com (localhost [127.0.0.1]) by mta02.idc.renesas.com with ESMTP id n4Q3H7IU028140; Tue, 26 May 2009 12:17:07 +0900 (JST) Received: from [172.30.8.157] by ims05.idc.renesas.com (Sendmail) with ESMTPA id <0KK800LSXEGHJZ@ims05.idc.renesas.com>; Tue, 26 May 2009 12:17:05 +0900 (JST) Date: Tue, 26 May 2009 12:17:05 +0900 From: Yoshihiro Shimoda Subject: [PATCH] sh: add platform data for r8a66597-hcd in setup-sh7366 To: Paul Mundt Cc: SH-Linux Message-id: <4A1B5F31.10602@renesas.com> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: 7bit User-Agent: Thunderbird 2.0.0.14 (Windows/20080421) X-Brightmail-Tracker: AAAAAA== Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org and remove redundant parameter for r8a66597-hcd. Signed-off-by: Yoshihiro Shimoda --- This patch depends on the following patch. http://marc.info/?l=linux-usb&m=124330739812843&w=2 arch/sh/kernel/cpu/sh4a/setup-sh7366.c | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7366.c b/arch/sh/kernel/cpu/sh4a/setup-sh7366.c index 93ecf8e..200bc6a 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7366.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7366.c @@ -15,6 +15,7 @@ #include #include #include +#include #include static struct resource iic_resources[] = { @@ -38,18 +39,20 @@ static struct platform_device iic_device = { .resource = iic_resources, }; +static struct r8a66597_platdata r8a66597_data = { + .irq_sense = 1, +}; + static struct resource usb_host_resources[] = { [0] = { - .name = "r8a66597_hcd", .start = 0xa4d80000, .end = 0xa4d800ff, .flags = IORESOURCE_MEM, }, [1] = { - .name = "r8a66597_hcd", .start = 65, .end = 65, - .flags = IORESOURCE_IRQ, + .flags = IORESOURCE_IRQ | IRQF_TRIGGER_LOW, }, }; @@ -59,6 +62,7 @@ static struct platform_device usb_host_device = { .dev = { .dma_mask = NULL, .coherent_dma_mask = 0xffffffff, + .platform_data = &r8a66597_data, }, .num_resources = ARRAY_SIZE(usb_host_resources), .resource = usb_host_resources,