diff options
author | Wolfgang Denk <wd@denx.de> | 2008-04-08 00:04:39 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-04-08 00:04:39 +0200 |
commit | 5c395393cc9b85b14c5481dbcab6b67b54f31622 (patch) | |
tree | 888e8cd55173a99f636b19e2813e3dfe6afe3d44 /include/asm-sh/cpu_sh4.h | |
parent | e59af4b611408adcdfb5e19bc5194a7d1f8b4dc3 (diff) | |
parent | 280df59a8d62c6e74c281b1cb7e2052df4d6cb00 (diff) | |
download | u-boot-imx-5c395393cc9b85b14c5481dbcab6b67b54f31622.zip u-boot-imx-5c395393cc9b85b14c5481dbcab6b67b54f31622.tar.gz u-boot-imx-5c395393cc9b85b14c5481dbcab6b67b54f31622.tar.bz2 |
Merge branch 'master' of git://www.denx.de/git/u-boot-sh
Diffstat (limited to 'include/asm-sh/cpu_sh4.h')
-rw-r--r-- | include/asm-sh/cpu_sh4.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/include/asm-sh/cpu_sh4.h b/include/asm-sh/cpu_sh4.h index 2658039..c200ba5 100644 --- a/include/asm-sh/cpu_sh4.h +++ b/include/asm-sh/cpu_sh4.h @@ -1,5 +1,5 @@ /* - * (C) Copyright 2007 Nobuhiro Iwamatsu <iwamatsu@nigauri.org> + * (C) Copyright 2007,2008 Nobuhiro Iwamatsu <iwamatsu@nigauri.org> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -30,12 +30,15 @@ #define CACHE_OC_NUM_ENTRIES 512 #define CACHE_OC_ENTRY_SHIFT 5 -#if defined (CONFIG_CPU_SH7750) -#include <asm/cpu_sh7750.h> +#if defined (CONFIG_CPU_SH7750) || \ + defined(CONFIG_CPU_SH7751) +# include <asm/cpu_sh7750.h> #elif defined (CONFIG_CPU_SH7722) -#include <asm/cpu_sh7722.h> +# include <asm/cpu_sh7722.h> +#elif defined (CONFIG_CPU_SH7780) +# include <asm/cpu_sh7780.h> #else -#error "Unknown SH4 variant" +# error "Unknown SH4 variant" #endif #endif /* _ASM_CPU_SH4_H_ */ |