From patchwork Mon Apr 11 08:09:24 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 945 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.159.109) by localhost6.localdomain6 with IMAP4-SSL; 08 Jun 2011 14:47:38 -0000 Delivered-To: patches@linaro.org Received: by 10.68.59.138 with SMTP id z10cs28833pbq; Mon, 11 Apr 2011 01:04:57 -0700 (PDT) Received: by 10.42.149.10 with SMTP id t10mr4785176icv.344.1302509097484; Mon, 11 Apr 2011 01:04:57 -0700 (PDT) Received: from mail-iw0-f178.google.com (mail-iw0-f178.google.com [209.85.214.178]) by mx.google.com with ESMTPS id wv16si15985402icb.117.2011.04.11.01.04.55 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 11 Apr 2011 01:04:56 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.214.178 is neither permitted nor denied by best guess record for domain of shawn.guo@linaro.org) client-ip=209.85.214.178; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.214.178 is neither permitted nor denied by best guess record for domain of shawn.guo@linaro.org) smtp.mail=shawn.guo@linaro.org Received: by iwn9 with SMTP id 9so6847367iwn.37 for ; Mon, 11 Apr 2011 01:04:55 -0700 (PDT) Received: by 10.42.156.199 with SMTP id a7mr7601941icx.417.1302509095640; Mon, 11 Apr 2011 01:04:55 -0700 (PDT) Received: from localhost.localdomain ([117.80.114.188]) by mx.google.com with ESMTPS id wo11sm3803974icb.20.2011.04.11.01.04.50 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 11 Apr 2011 01:04:55 -0700 (PDT) From: Shawn Guo To: john.rigby@linaro.org Cc: linaro-kernel@lists.linaro.org, patches@linaro.org, Shawn Guo Subject: [PATCH 2/2] Fix CONFIG_OF_LIBFDT redefined warning Date: Mon, 11 Apr 2011 16:09:24 +0800 Message-Id: <1302509364-22278-2-git-send-email-shawn.guo@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1302509364-22278-1-git-send-email-shawn.guo@linaro.org> References: <1302509364-22278-1-git-send-email-shawn.guo@linaro.org> With the following commit, CONFIG_OF_LIBFDT was redefined. a8f88eedb2c4df472e512db58dfcaafd82c68b86 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 */