From mboxrd@z Thu Jan 1 00:00:00 1970 From: Macpaul Lin Date: Wed, 31 Aug 2011 18:25:54 +0800 Subject: [U-Boot] [PATCH v10 2/8] nds32: add NDS32 support into common header file In-Reply-To: <1304342712-17120-10-git-send-email-macpaul@andestech.com> References: <1304342712-17120-10-git-send-email-macpaul@andestech.com> Message-ID: <1314786360-31410-2-git-send-email-macpaul@andestech.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Add NDS32 support into common header file. Signed-off-by: Macpaul Lin --- Changes for v1-v7: - No change Changes for v8: - Fix the patch according to dependency of x86's Fix Changes for v9-v10: - No change include/common.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/common.h b/include/common.h index 12a1074..782933d 100644 --- a/include/common.h +++ b/include/common.h @@ -281,6 +281,10 @@ int setenv (const char *, const char *); #ifdef CONFIG_X86 /* x86 version to be fixed! */ # include #endif /* CONFIG_X86 */ +#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); -- 1.7.3.5