diff options
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 9 | 
1 files changed, 7 insertions, 2 deletions
diff --git a/include/common.h b/include/common.h index 6d5292422..0cfa6a837 100644 --- a/include/common.h +++ b/include/common.h @@ -311,6 +311,8 @@ extern ulong monitor_flash_len;  int mac_read_from_eeprom(void);  extern u8 _binary_dt_dtb_start[];	/* embedded device tree blob */  int set_cpu_clk_info(void); +int print_cpuinfo(void); +int update_flash_size(int flash_size);  /**   * Show the DRAM size in a board-specific way @@ -528,7 +530,11 @@ int	dcache_status (void);  void	dcache_enable (void);  void	dcache_disable(void);  void	mmu_disable(void); -void	relocate_code (ulong, gd_t *, ulong) __attribute__ ((noreturn)); +#if defined(CONFIG_ARM) +void	relocate_code(ulong); +#else +void	relocate_code(ulong, gd_t *, ulong) __attribute__ ((noreturn)); +#endif  ulong	get_endaddr   (void);  void	trap_init     (ulong);  #if defined (CONFIG_4xx)	|| \ @@ -641,7 +647,6 @@ ulong	get_PCI_freq (void);  #endif  #if defined(CONFIG_S3C24X0) || \      defined(CONFIG_LH7A40X) || \ -    defined(CONFIG_S3C6400) || \      defined(CONFIG_EP93XX)  ulong	get_FCLK (void);  ulong	get_HCLK (void);  |