From patchwork Wed May 4 06:13:17 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 1350 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:13 -0000 Delivered-To: patches@linaro.org Received: by 10.224.2.73 with SMTP id 9cs39271qai; Tue, 3 May 2011 23:07:07 -0700 (PDT) Received: by 10.68.13.7 with SMTP id d7mr998803pbc.311.1304489226339; Tue, 03 May 2011 23:07:06 -0700 (PDT) Received: from mail-px0-f176.google.com (mail-px0-f176.google.com [209.85.212.176]) by mx.google.com with ESMTPS id m10si2446530wfl.140.2011.05.03.23.07.05 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 03 May 2011 23:07:06 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.212.176 is neither permitted nor denied by best guess record for domain of shawn.guo@linaro.org) client-ip=209.85.212.176; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.212.176 is neither permitted nor denied by best guess record for domain of shawn.guo@linaro.org) smtp.mail=shawn.guo@linaro.org Received: by pxi11 with SMTP id 11so575440pxi.35 for ; Tue, 03 May 2011 23:07:05 -0700 (PDT) Received: by 10.68.55.200 with SMTP id u8mr1040012pbp.462.1304489225370; Tue, 03 May 2011 23:07:05 -0700 (PDT) Received: from localhost.localdomain ([121.228.78.200]) by mx.google.com with ESMTPS id q5sm525227pbs.11.2011.05.03.23.06.59 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 03 May 2011 23:07:04 -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 2/2] mx5: Fix CONFIG_OF_LIBFDT redefined warning Date: Wed, 4 May 2011 14:13:17 +0800 Message-Id: <1304489597-26548-2-git-send-email-shawn.guo@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1304489597-26548-1-git-send-email-shawn.guo@linaro.org> References: <20110328195231.10235.36716.stgit@ponder> <1304489597-26548-1-git-send-email-shawn.guo@linaro.org> With the following commit, CONFIG_OF_LIBFDT is redefined. 2fa8ca98c37d5b1bb0328b19ddb7e9d162cd9683 Add CONFIG_OF_LIBFDT to more boards. Remove the duplicated definition to fix CONFIG_OF_LIBFDT redefined warning. Signed-off-by: Shawn Guo --- include/configs/mx51evk.h | 2 -- include/configs/mx53evk.h | 2 -- 2 files changed, 0 insertions(+), 4 deletions(-) diff --git a/include/configs/mx51evk.h b/include/configs/mx51evk.h index febe8d8..207b20c 100644 --- a/include/configs/mx51evk.h +++ b/include/configs/mx51evk.h @@ -226,6 +226,4 @@ #define CONFIG_ENV_IS_IN_MMC #define CONFIG_SYS_MMC_ENV_DEV 0 -#define CONFIG_OF_LIBFDT - #endif diff --git a/include/configs/mx53evk.h b/include/configs/mx53evk.h index 74aee89..78122a7 100644 --- a/include/configs/mx53evk.h +++ b/include/configs/mx53evk.h @@ -192,6 +192,4 @@ #define CONFIG_ENV_IS_IN_MMC #define CONFIG_SYS_MMC_ENV_DEV 0 -#define CONFIG_OF_LIBFDT - #endif /* __CONFIG_H */