From patchwork Thu Apr 28 00:48: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: 1202 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.159.109) by localhost6.localdomain6 with IMAP4-SSL; 08 Jun 2011 14:50:08 -0000 Delivered-To: patches@linaro.org Received: by 10.224.2.73 with SMTP id 9cs127817qai; Wed, 27 Apr 2011 17:45:18 -0700 (PDT) Received: by 10.216.221.72 with SMTP id q50mr2643768wep.99.1303951517967; Wed, 27 Apr 2011 17:45:17 -0700 (PDT) Received: from AM1EHSOBE002.bigfish.com (am1ehsobe002.messaging.microsoft.com [213.199.154.205]) by mx.google.com with ESMTPS id x55si2249177wen.11.2011.04.27.17.45.17 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 27 Apr 2011 17:45:17 -0700 (PDT) Received-SPF: neutral (google.com: 213.199.154.205 is neither permitted nor denied by best guess record for domain of shawn.guo@linaro.org) client-ip=213.199.154.205; Authentication-Results: mx.google.com; spf=neutral (google.com: 213.199.154.205 is neither permitted nor denied by best guess record for domain of shawn.guo@linaro.org) smtp.mail=shawn.guo@linaro.org Received: from mail26-am1-R.bigfish.com (10.3.201.244) by AM1EHSOBE002.bigfish.com (10.3.204.22) with Microsoft SMTP Server id 14.1.225.22; Thu, 28 Apr 2011 00:45:17 +0000 Received: from mail26-am1 (localhost.localdomain [127.0.0.1]) by mail26-am1-R.bigfish.com (Postfix) with ESMTP id 3128E1070474; Thu, 28 Apr 2011 00:45:17 +0000 (UTC) X-SpamScore: 0 X-BigFish: VS0(zzzz1202hzz8275dhz2dh87h2a8h668h839h64h) X-Spam-TCS-SCL: 3:0 X-Forefront-Antispam-Report: CIP:70.37.183.190; KIP:(null); UIP:(null); IPVD:NLI; H:mail.freescale.net; RD:none; EFVD:NLI X-FB-DOMAIN-IP-MATCH: fail Received: from mail26-am1 (localhost.localdomain [127.0.0.1]) by mail26-am1 (MessageSwitch) id 1303951516910010_21003; Thu, 28 Apr 2011 00:45:16 +0000 (UTC) Received: from AM1EHSMHS002.bigfish.com (unknown [10.3.201.246]) by mail26-am1.bigfish.com (Postfix) with ESMTP id DA63F111804B; Thu, 28 Apr 2011 00:45:16 +0000 (UTC) Received: from mail.freescale.net (70.37.183.190) by AM1EHSMHS002.bigfish.com (10.3.207.102) with Microsoft SMTP Server (TLS) id 14.1.225.22; Thu, 28 Apr 2011 00:45:16 +0000 Received: from az33smr02.freescale.net (10.64.34.200) by 039-SN1MMR1-002.039d.mgd.msft.net (10.84.1.15) with Microsoft SMTP Server id 14.1.270.2; Wed, 27 Apr 2011 19:45:08 -0500 Received: from S2100-06.ap.freescale.net (S2100-06.ap.freescale.net [10.192.242.125]) by az33smr02.freescale.net (8.13.1/8.13.0) with ESMTP id p3S0j337003025; Wed, 27 Apr 2011 19:45:07 -0500 (CDT) From: Shawn Guo To: CC: , , , Shawn Guo Subject: [U-Boot] [PATCH 2/2] Fix CONFIG_OF_LIBFDT redefined warning Date: Thu, 28 Apr 2011 08:48:16 +0800 Message-ID: <1303951696-9762-2-git-send-email-shawn.guo@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1303951696-9762-1-git-send-email-shawn.guo@linaro.org> References: <20110328195231.10235.36716.stgit@ponder> <1303951696-9762-1-git-send-email-shawn.guo@linaro.org> MIME-Version: 1.0 X-OriginatorOrg: sigmatel.com 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 */