From patchwork Mon Jun 8 12:03:23 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tero Kristo X-Patchwork-Id: 28621 X-Patchwork-Delegate: khilman@deeprootsystems.com 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 n58CXQtE020417 for ; Mon, 8 Jun 2009 12:33:27 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751941AbZFHMdW (ORCPT ); Mon, 8 Jun 2009 08:33:22 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752120AbZFHMdW (ORCPT ); Mon, 8 Jun 2009 08:33:22 -0400 Received: from smtp.nokia.com ([192.100.105.134]:27363 "EHLO mgw-mx09.nokia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751941AbZFHMdW (ORCPT ); Mon, 8 Jun 2009 08:33:22 -0400 Received: from esebh105.NOE.Nokia.com (esebh105.ntc.nokia.com [172.21.138.211]) by mgw-mx09.nokia.com (Switch-3.3.3/Switch-3.3.3) with ESMTP id n58CWJ2B026964 for ; Mon, 8 Jun 2009 07:33:25 -0500 Received: from vaebh104.NOE.Nokia.com ([10.160.244.30]) by esebh105.NOE.Nokia.com with Microsoft SMTPSVC(6.0.3790.3959); Mon, 8 Jun 2009 15:33:19 +0300 Received: from mgw-sa01.ext.nokia.com ([147.243.1.47]) by vaebh104.NOE.Nokia.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Mon, 8 Jun 2009 15:33:16 +0300 Received: from localhost.localdomain (sokoban.ntc.nokia.com [172.22.144.95]) by mgw-sa01.ext.nokia.com (Switch-3.2.6/Switch-3.2.6) with ESMTP id n58CXFGx008783 for ; Mon, 8 Jun 2009 15:33:15 +0300 From: Tero Kristo To: linux-omap@vger.kernel.org Subject: [PATCH] RX51: Add support for SDRAM chip select 1 Date: Mon, 8 Jun 2009 15:03:23 +0300 Message-Id: <1244462603-12793-1-git-send-email-tero.kristo@nokia.com> X-Mailer: git-send-email 1.5.4.3 In-Reply-To: <> References: <> X-OriginalArrivalTime: 08 Jun 2009 12:33:16.0483 (UTC) FILETIME=[4C1FC130:01C9E835] X-Nokia-AV: Clean Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org From: Tero Kristo Applies on top of PM branch. Signed-off-by: Tero Kristo --- arch/arm/mach-omap2/board-rx51.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-omap2/board-rx51.c b/arch/arm/mach-omap2/board-rx51.c index 3e4b7f8..7ab8a74 100644 --- a/arch/arm/mach-omap2/board-rx51.c +++ b/arch/arm/mach-omap2/board-rx51.c @@ -61,7 +61,11 @@ static struct omap_bluetooth_config rx51_bt_config = { static void __init rx51_init_irq(void) { - omap2_init_common_hw(rx51_get_sdram_timings(), NULL, + struct omap_sdrc_params *sdrc_params; + + sdrc_params = rx51_get_sdram_timings(); + + omap2_init_common_hw(sdrc_params, sdrc_params, omap3_mpu_rate_table, omap3_dsp_rate_table, omap3_l3_rate_table);