From patchwork Thu Nov 22 08:00:09 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nobuhiro Iwamatsu X-Patchwork-Id: 1785581 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id EF60B3FD1A for ; Thu, 22 Nov 2012 19:04:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753593Ab2KVTE0 (ORCPT ); Thu, 22 Nov 2012 14:04:26 -0500 Received: from mail-da0-f46.google.com ([209.85.210.46]:51013 "EHLO mail-da0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754083Ab2KVTEY (ORCPT ); Thu, 22 Nov 2012 14:04:24 -0500 Received: by mail-da0-f46.google.com with SMTP id p5so2306924dak.19 for ; Thu, 22 Nov 2012 11:04:24 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references:x-gm-message-state; bh=xKXU86T8PXEbN66l7Hs2+/PjjI6uz2b2uLo/tl4Utrc=; b=LpR6hUR96QXCY6WZatkGR3rle75Cc2CqJVKdz9dSKr1B+HbTuzO8cq1FnVu06hA1Yc ulsqPV6OEzMCjfHWtoaFq3tXQvSBZ9hYlua5MTR/QJP9drhFqjtJjm5MT6a1DOnHkH1p lxVlrih7S/jCSht3GlucLJbAPmr7bs0ES9MrINwpbiOdg/ZD+nmxi+pc9ggaQZXsH3kT ikQA2oJIqaifs1cVGjMeT0jGV/gt2xVbJLB/74bYizr7v72AGX73o2bhm30yeA8YRR02 +A4LDGA98K+p7s5Yohx0ej/uRy/MpPOstoNlDbVf+aY6zsp1bkzlta/yOI3Cdqi4+HTR nRrg== Received: by 10.66.78.231 with SMTP id e7mr25134630pax.44.1353571261248; Thu, 22 Nov 2012 00:01:01 -0800 (PST) Received: from xps-iwamatsu.renesas.com (49.14.32.202.bf.2iij.net. [202.32.14.49]) by mx.google.com with ESMTPS id s1sm1507624paz.0.2012.11.22.00.00.58 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 22 Nov 2012 00:01:00 -0800 (PST) From: Nobuhiro Iwamatsu To: linux-sh@vger.kernel.org, linux-arm-kernel@lists.infradead.org Cc: magnus.damm@gmail.com, horms@verge.net.au, Nobuhiro Iwamatsu , Magnus Damm Subject: [PATCH v5 12/15] ARM: shmobile: r8a7740: Use DT initialisation of INTC Date: Thu, 22 Nov 2012 17:00:09 +0900 Message-Id: <1353571213-26006-13-git-send-email-nobuhiro.iwamatsu.yj@renesas.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1353571213-26006-1-git-send-email-nobuhiro.iwamatsu.yj@renesas.com> References: <1353571213-26006-1-git-send-email-nobuhiro.iwamatsu.yj@renesas.com> X-Gm-Message-State: ALoCoQm7UCoR+cv6t+0iV+R1CHPjMAiYGoI/wo6dug0ru0usbsmhxY6HNfOH/VexyD1Q5EyBNK0t Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org Cc: Magnus Damm Signed-off-by: Nobuhiro Iwamatsu Signed-off-by: Simon Horman --- arch/arm/mach-shmobile/setup-r8a7740.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-shmobile/setup-r8a7740.c b/arch/arm/mach-shmobile/setup-r8a7740.c index 11bb1d9..a8e57ab 100644 --- a/arch/arm/mach-shmobile/setup-r8a7740.c +++ b/arch/arm/mach-shmobile/setup-r8a7740.c @@ -750,7 +750,7 @@ static const char *r8a7740_boards_compat_dt[] __initdata = { DT_MACHINE_START(SH7372_DT, "Generic R8A7740 (Flattened Device Tree)") .map_io = r8a7740_map_io, .init_early = r8a7740_add_early_devices_dt, - .init_irq = r8a7740_init_irq, + .init_irq = r8a7740_init_irq_of, .handle_irq = shmobile_handle_irq_intc, .init_machine = r8a7740_add_standard_devices_dt, .timer = &shmobile_timer,