From patchwork Thu Jul 7 22:10:11 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Igor Grinberg X-Patchwork-Id: 954492 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p67MALQ4018851 for ; Thu, 7 Jul 2011 22:10:21 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753170Ab1GGWKU (ORCPT ); Thu, 7 Jul 2011 18:10:20 -0400 Received: from 50.23.254.54-static.reverse.softlayer.com ([50.23.254.54]:56494 "EHLO softlayer.compulab.co.il" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751601Ab1GGWKU (ORCPT ); Thu, 7 Jul 2011 18:10:20 -0400 Received: from [62.90.235.247] (port=33228 helo=zimbra-mta.compulab.co.il) by softlayer.compulab.co.il with esmtp (Exim 4.69) (envelope-from ) id 1Qewlz-00010j-0W; Fri, 08 Jul 2011 01:10:15 +0300 Received: from localhost (localhost.localdomain [127.0.0.1]) by zimbra-mta.compulab.co.il (Postfix) with ESMTP id 0B9E77E8B59; Fri, 8 Jul 2011 01:10:14 +0300 (IDT) X-Virus-Scanned: amavisd-new at compulab.co.il Received: from zimbra-mta.compulab.co.il ([127.0.0.1]) by localhost (zimbra-mta.compulab.co.il [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iwylukKQK7Ui; Fri, 8 Jul 2011 01:10:13 +0300 (IDT) Received: from grinberg-linux (grinberg-pc.compulab.local [10.1.1.13]) by zimbra-mta.compulab.co.il (Postfix) with SMTP id ECA797E8B56; Fri, 8 Jul 2011 01:10:11 +0300 (IDT) Received: by grinberg-linux (sSMTP sendmail emulation); Fri, 08 Jul 2011 01:10:15 +0300 From: Igor Grinberg To: Arnd Bergmann Cc: Nicolas Pitre , Thomas Gleixner , Tony Lindgren , linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Igor Grinberg Subject: [PATCH] ARM: omap2: cm-t3730: convert boot_params to atag_offset Date: Fri, 8 Jul 2011 01:10:11 +0300 Message-Id: <1310076611-10135-1-git-send-email-grinberg@compulab.co.il> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <201107072240.58987.arnd@arndb.de> References: <201107072240.58987.arnd@arndb.de> X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - softlayer.compulab.co.il X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - compulab.co.il Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Thu, 07 Jul 2011 22:10:21 +0000 (UTC) Signed-off-by: Igor Grinberg --- Hi Arnd, This one should apply cleanly on top of Nicolas' series and does the missing change for cm-t3730. If it somehow helps/saves you an effort, here it is. arch/arm/mach-omap2/board-cm-t35.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-omap2/board-cm-t35.c b/arch/arm/mach-omap2/board-cm-t35.c index fcd4032..e7d48e8 100644 --- a/arch/arm/mach-omap2/board-cm-t35.c +++ b/arch/arm/mach-omap2/board-cm-t35.c @@ -679,7 +679,7 @@ MACHINE_START(CM_T35, "Compulab CM-T35") MACHINE_END MACHINE_START(CM_T3730, "Compulab CM-T3730") - .boot_params = 0x80000100, + .atag_offset = 0x100, .reserve = omap_reserve, .map_io = omap3_map_io, .init_early = cm_t35_init_early,