diff options
| author | Wolfgang Denk <wd@denx.de> | 2009-12-01 12:10:51 +0100 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2009-12-01 12:10:51 +0100 | 
| commit | 57bf140ac66f95c9c36c494e4d027551b5477b01 (patch) | |
| tree | 78cc2602ee9dca3284e47f38d29380171fb53646 /include/common.h | |
| parent | 34ddbd171ba154e9afd83f07a07ad8b57ac592e3 (diff) | |
| parent | 71636fa7c3de63de29c0f514d5c725eccb011657 (diff) | |
| download | olio-uboot-2014.01-57bf140ac66f95c9c36c494e4d027551b5477b01.tar.xz olio-uboot-2014.01-57bf140ac66f95c9c36c494e4d027551b5477b01.zip | |
Merge branch 'next-sync' of git://git.denx.de/u-boot-arm into next
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/include/common.h b/include/common.h index f7c93bf5a..30a4b7aff 100644 --- a/include/common.h +++ b/include/common.h @@ -107,6 +107,9 @@ typedef volatile unsigned char	vu_char;  #ifdef CONFIG_BLACKFIN  #include <asm/blackfin.h>  #endif +#ifdef CONFIG_SOC_DA8XX +#include <asm/arch/hardware.h> +#endif  #include <part.h>  #include <flash.h> @@ -495,8 +498,9 @@ int	prt_mpc8220_clks (void);  ulong	get_OPB_freq (void);  ulong	get_PCI_freq (void);  #endif -#if defined(CONFIG_S3C2400) || defined(CONFIG_S3C2410) || \ -	defined(CONFIG_LH7A40X) || defined(CONFIG_S3C6400) +#if defined(CONFIG_S3C24X0) || \ +    defined(CONFIG_LH7A40X) || \ +    defined(CONFIG_S3C6400)  ulong	get_FCLK (void);  ulong	get_HCLK (void);  ulong	get_PCLK (void); |