From patchwork Thu Mar 7 23:31:03 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergei Shtylyov X-Patchwork-Id: 2234041 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 314DADFE75 for ; Thu, 7 Mar 2013 22:30:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752993Ab3CGWaL (ORCPT ); Thu, 7 Mar 2013 17:30:11 -0500 Received: from mail-wg0-f42.google.com ([74.125.82.42]:57910 "EHLO mail-wg0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752809Ab3CGWaK (ORCPT ); Thu, 7 Mar 2013 17:30:10 -0500 Received: by mail-wg0-f42.google.com with SMTP id 12so7586259wgh.1 for ; Thu, 07 Mar 2013 14:30:09 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:to:subject:from:organization:date:mime-version :content-type:content-transfer-encoding:message-id :x-gm-message-state; bh=95yddUHtx/fLNTsAK+dgDuwpVOZVWv09UjRSbOM1zis=; b=AFzoOr9pLPFF0Chux5frMmrks6fw4TapxJPbs7co0oL5rcPf8Yng1NXIuY9k5ukola 2M4iz2t1wgPFHGibqipjuz59ron5G40RX6y4Yr3HvMbRL0D3lZh0hO5lHAapaa6bwiix 8H6+c9wWgwfcuXHo82YraHSguivNWCFCfUG552vRUi1n2N8hKiF/UDPPjZN8RtlmIQpK 6iwt5DhOmSsw7haAMPKb3nKJhk+tDiX1t70LQXUaGW/rtdcLxfmElooC8sVgRmbWYVNx 3yEHSJfODmb+YZUwYW/OdFGkvRpZ+ASnP3opgYopVwyvZoIwNRolEr0/2uftV2cCxGeR /vOQ== X-Received: by 10.194.173.167 with SMTP id bl7mr58135924wjc.50.1362695409303; Thu, 07 Mar 2013 14:30:09 -0800 (PST) Received: from wasted.dev.rtsoft.ru (ppp91-79-96-59.pppoe.mtu-net.ru. [91.79.96.59]) by mx.google.com with ESMTPS id n2sm36071035wiy.6.2013.03.07.14.30.07 (version=TLSv1 cipher=RC4-SHA bits=128/128); Thu, 07 Mar 2013 14:30:08 -0800 (PST) To: horms@verge.net.au, magnus.damm@gmail.com, linux@arm.linux.org.uk, linux-sh@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH] ARM: shmobile: R8A7779: use gic_iid() in SATA IRQ resource From: Sergei Shtylyov Organization: Cogent Embedded Date: Fri, 8 Mar 2013 02:31:03 +0300 MIME-Version: 1.0 Message-Id: <201303080231.04149.sergei.shtylyov@cogentembedded.com> X-Gm-Message-State: ALoCoQmXOMqA111vWF/TDdPsbmsuHQYKF5sb3MQR0rj8Idm2HuvWPUlunY22QKaRcBD2LSGNhDrr Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org Commit "ARM: shmobile: r8a7779: use gic_iid macro" switched R8A7779 platform devices to using gic_iid() macro instead of gic_spi() but commit "ARM: mach- shmobile: r8a7779: add SATA support" added another use of gic_spi(). Convert the SATA IRQ resource to using gic_iid(). Signed-off-by: Sergei Shtylyov Acked-by: Kuninori Morimoto --- This patch is atop of the 'next' branch of Simon Horman's renesas.git. arch/arm/mach-shmobile/setup-r8a7779.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Index: renesas/arch/arm/mach-shmobile/setup-r8a7779.c =================================================================== --- renesas.orig/arch/arm/mach-shmobile/setup-r8a7779.c +++ renesas/arch/arm/mach-shmobile/setup-r8a7779.c @@ -331,7 +331,7 @@ static struct resource sata_resources[] .flags = IORESOURCE_MEM, }, [1] = { - .start = gic_spi(100), + .start = gic_iid(0x84), .flags = IORESOURCE_IRQ, }, };