From patchwork Thu Apr 7 12:45:25 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Macpaul Lin X-Patchwork-Id: 90168 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id E71FFB6F74 for ; Thu, 7 Apr 2011 22:39:35 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3C9BF2809C; Thu, 7 Apr 2011 14:39:34 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CrCTlYO4aAap; Thu, 7 Apr 2011 14:39:33 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 315552808C; Thu, 7 Apr 2011 14:39:31 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3B22128089 for ; Thu, 7 Apr 2011 14:39:29 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JwCTtNiwgLPn for ; Thu, 7 Apr 2011 14:39:28 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from clanlab.dyndns.org (unknown [140.119.175.157]) by theia.denx.de (Postfix) with ESMTPS id 0AD4F28086 for ; Thu, 7 Apr 2011 14:39:26 +0200 (CEST) Received: by clanlab.dyndns.org (Postfix, from userid 1000) id D348B38B4375; Thu, 7 Apr 2011 20:45:38 +0800 (CST) From: Macpaul Lin To: u-boot@lists.denx.de, ratbert@faraday-tech.com, wd@denx.de Date: Thu, 7 Apr 2011 20:45:25 +0800 Message-Id: <1302180333-25372-2-git-send-email-macpaul@andestech.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1302180333-25372-1-git-send-email-macpaul@andestech.com> References: <1302180333-25372-1-git-send-email-macpaul@andestech.com> Cc: Macpaul Lin Subject: [U-Boot] [PATCH v7 02/10] nds32: add NDS32 support into common header file X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Add NDS32 support into common header file. Signed-off-by: Macpaul Lin --- include/common.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/common.h b/include/common.h index 54503ed..423bbd8 100644 --- a/include/common.h +++ b/include/common.h @@ -273,6 +273,10 @@ int setenv (char *, char *); #ifdef CONFIG_I386 /* x86 version to be fixed! */ # include #endif /* CONFIG_I386 */ +#ifdef CONFIG_NDS32 +# include +# include /* NDS32 version to be fixed! */ +#endif /* CONFIG_NDS32 */ #ifdef CONFIG_AUTO_COMPLETE int env_complete(char *var, int maxv, char *cmdv[], int maxsz, char *buf);