From patchwork Wed May 4 06:13:16 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 1347 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.159.109) by localhost6.localdomain6 with IMAP4-SSL; 08 Jun 2011 14:51:12 -0000 Delivered-To: patches@linaro.org Received: by 10.224.2.73 with SMTP id 9cs39269qai; Tue, 3 May 2011 23:07:01 -0700 (PDT) Received: by 10.68.30.39 with SMTP id p7mr1102813pbh.34.1304489221184; Tue, 03 May 2011 23:07:01 -0700 (PDT) Received: from mail-pw0-f50.google.com (mail-pw0-f50.google.com [209.85.160.50]) by mx.google.com with ESMTPS id h3si1182742pbj.207.2011.05.03.23.06.59 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 03 May 2011 23:07:00 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of shawn.guo@linaro.org) client-ip=209.85.160.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of shawn.guo@linaro.org) smtp.mail=shawn.guo@linaro.org Received: by pwi3 with SMTP id 3so508050pwi.37 for ; Tue, 03 May 2011 23:06:59 -0700 (PDT) Received: by 10.68.54.98 with SMTP id i2mr1050964pbp.226.1304489218880; Tue, 03 May 2011 23:06:58 -0700 (PDT) Received: from localhost.localdomain ([121.228.78.200]) by mx.google.com with ESMTPS id q5sm525227pbs.11.2011.05.03.23.06.46 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 03 May 2011 23:06:58 -0700 (PDT) From: Shawn Guo To: u-boot@lists.denx.de Cc: sbabic@denx.de, john.rigby@linaro.org, patches@linaro.org, Shawn Guo Subject: [U-Boot] [PATCH RESEND 1/2] mx5: Remove unnecessary CONFIG_SYS_BOOTMAPSZ definition Date: Wed, 4 May 2011 14:13:16 +0800 Message-Id: <1304489597-26548-1-git-send-email-shawn.guo@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <20110328195231.10235.36716.stgit@ponder> References: <20110328195231.10235.36716.stgit@ponder> Since the following commit, definition CONFIG_SYS_BOOTMAPSZ is not needed any more. ed59e58786cae9f8afcb575649afc65985beed4d Remove device tree booting dependency on CONFIG_SYS_BOOTMAPSZ Signed-off-by: Shawn Guo --- Why resend? The previous post does not apply on u-boot mainline, so rebase and resend. include/configs/mx51evk.h | 1 - include/configs/mx53evk.h | 1 - 2 files changed, 0 insertions(+), 2 deletions(-) diff --git a/include/configs/mx51evk.h b/include/configs/mx51evk.h index 6a785f8..febe8d8 100644 --- a/include/configs/mx51evk.h +++ b/include/configs/mx51evk.h @@ -227,6 +227,5 @@ #define CONFIG_SYS_MMC_ENV_DEV 0 #define CONFIG_OF_LIBFDT -#define CONFIG_SYS_BOOTMAPSZ 0x800000 #endif diff --git a/include/configs/mx53evk.h b/include/configs/mx53evk.h index 5749a08..74aee89 100644 --- a/include/configs/mx53evk.h +++ b/include/configs/mx53evk.h @@ -193,6 +193,5 @@ #define CONFIG_SYS_MMC_ENV_DEV 0 #define CONFIG_OF_LIBFDT -#define CONFIG_SYS_BOOTMAPSZ 0x800000 #endif /* __CONFIG_H */