From patchwork Fri Nov 19 06:06:28 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Macpaul Lin X-Patchwork-Id: 72218 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 755D1B71CD for ; Fri, 19 Nov 2010 17:03:45 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id EABC32830A; Fri, 19 Nov 2010 07:03:43 +0100 (CET) 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 phtOBp6mIoQD; Fri, 19 Nov 2010 07:03:43 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 6281528310; Fri, 19 Nov 2010 07:03:41 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 152D928310 for ; Fri, 19 Nov 2010 07:03:39 +0100 (CET) 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 p+SaDeIbCapd for ; Fri, 19 Nov 2010 07:03:37 +0100 (CET) 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 ATCPCS06.andestech.com (59-124-160-117.HINET-IP.hinet.net [59.124.160.117]) by theia.denx.de (Postfix) with ESMTP id 075232830A for ; Fri, 19 Nov 2010 07:03:35 +0100 (CET) Received: from app01.andestech.com ([10.0.4.31]) by ATCPCS06.andestech.com with Microsoft SMTPSVC(6.0.3790.4675); Fri, 19 Nov 2010 14:06:35 +0800 From: Macpaul Lin To: u-boot@lists.denx.de Date: Fri, 19 Nov 2010 14:06:28 +0800 Message-Id: <1290146789-27310-1-git-send-email-macpaul@andestech.com> X-Mailer: git-send-email 1.7.3.2 X-OriginalArrivalTime: 19 Nov 2010 06:06:35.0363 (UTC) FILETIME=[EBB38B30:01CB87AF] Cc: Macpaul Lin Subject: [U-Boot] [PATCH v2 1/2] 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 --- Changes for v2: - This files has no change. include/common.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/common.h b/include/common.h index 189ad81..d7c452a 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);