diff options
| -rw-r--r-- | arch/arm/cpu/armv7/omap-common/hwinit-common.c | 3 | ||||
| -rw-r--r-- | arch/arm/include/asm/arch-am33xx/sys_proto.h | 4 | ||||
| -rw-r--r-- | arch/arm/lib/board.c | 4 | ||||
| -rw-r--r-- | board/altera/socfpga/socfpga_cyclone5.c | 2 | ||||
| -rw-r--r-- | board/freescale/mx53loco/mx53loco.c | 2 | ||||
| -rw-r--r-- | board/nokia/rx51/rx51.h | 2 | ||||
| -rw-r--r-- | common/board_f.c | 2 | ||||
| -rw-r--r-- | include/common.h | 7 | 
8 files changed, 14 insertions, 12 deletions
| diff --git a/arch/arm/cpu/armv7/omap-common/hwinit-common.c b/arch/arm/cpu/armv7/omap-common/hwinit-common.c index bf2951031..ade744e31 100644 --- a/arch/arm/cpu/armv7/omap-common/hwinit-common.c +++ b/arch/arm/cpu/armv7/omap-common/hwinit-common.c @@ -248,6 +248,7 @@ u32 get_device_type(void)  				      (DEVICE_TYPE_MASK)) >> DEVICE_TYPE_SHIFT;  } +#if defined(CONFIG_DISPLAY_CPUINFO)  /*   * Print CPU information   */ @@ -258,6 +259,8 @@ int print_cpuinfo(void)  	return 0;  } +#endif +  #ifndef CONFIG_SYS_DCACHE_OFF  void enable_caches(void)  { diff --git a/arch/arm/include/asm/arch-am33xx/sys_proto.h b/arch/arm/include/asm/arch-am33xx/sys_proto.h index 87b7d367b..2e5c356e4 100644 --- a/arch/arm/include/asm/arch-am33xx/sys_proto.h +++ b/arch/arm/include/asm/arch-am33xx/sys_proto.h @@ -17,10 +17,6 @@  u32 get_cpu_rev(void);  u32 get_sysboot_value(void); -#ifdef CONFIG_DISPLAY_CPUINFO -int print_cpuinfo(void); -#endif -  extern struct ctrl_stat *cstat;  u32 get_device_type(void);  void save_omap_boot_params(void); diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c index 38b9c7d3c..c320a3516 100644 --- a/arch/arm/lib/board.c +++ b/arch/arm/lib/board.c @@ -197,8 +197,6 @@ static int arm_pci_init(void)   */  typedef int (init_fnc_t) (void); -int print_cpuinfo(void); -  void __dram_init_banksize(void)  {  	gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE; @@ -250,9 +248,7 @@ init_fnc_t *init_sequence[] = {  	serial_init,		/* serial communications setup */  	console_init_f,		/* stage 1 init of console */  	display_banner,		/* say that we are here */ -#if defined(CONFIG_DISPLAY_CPUINFO)  	print_cpuinfo,		/* display cpu info (and speed) */ -#endif  #if defined(CONFIG_DISPLAY_BOARDINFO)  	checkboard,		/* display board info */  #endif diff --git a/board/altera/socfpga/socfpga_cyclone5.c b/board/altera/socfpga/socfpga_cyclone5.c index 576066bef..a960eb600 100644 --- a/board/altera/socfpga/socfpga_cyclone5.c +++ b/board/altera/socfpga/socfpga_cyclone5.c @@ -12,6 +12,7 @@  DECLARE_GLOBAL_DATA_PTR; +#if defined(CONFIG_DISPLAY_CPUINFO)  /*   * Print CPU information   */ @@ -20,6 +21,7 @@ int print_cpuinfo(void)  	puts("CPU   : Altera SOCFPGA Platform\n");  	return 0;  } +#endif  /*   * Print Board information diff --git a/board/freescale/mx53loco/mx53loco.c b/board/freescale/mx53loco/mx53loco.c index db0bf1736..08dd66fcc 100644 --- a/board/freescale/mx53loco/mx53loco.c +++ b/board/freescale/mx53loco/mx53loco.c @@ -343,6 +343,7 @@ int board_early_init_f(void)  	return 0;  } +#if defined(CONFIG_DISPLAY_CPUINFO)  int print_cpuinfo(void)  {  	u32 cpurev; @@ -356,6 +357,7 @@ int print_cpuinfo(void)  	printf("Reset cause: %s\n", get_reset_cause());  	return 0;  } +#endif  /*   * Do not overwrite the console diff --git a/board/nokia/rx51/rx51.h b/board/nokia/rx51/rx51.h index 4a230dd59..0d2f0a54c 100644 --- a/board/nokia/rx51/rx51.h +++ b/board/nokia/rx51/rx51.h @@ -22,8 +22,6 @@ struct emu_hal_params_rx51 {  	u32 param4;  }; -int print_cpuinfo(void); -  /*   * IEN  - Input Enable   * IDIS - Input Disable diff --git a/common/board_f.c b/common/board_f.c index d0ee6f765..02965b0df 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -887,9 +887,7 @@ static init_fnc_t init_sequence_f[] = {  #ifdef CONFIG_PPC  	checkcpu,  #endif -#if defined(CONFIG_DISPLAY_CPUINFO)  	print_cpuinfo,		/* display cpu info (and speed) */ -#endif  #if defined(CONFIG_MPC5xxx)  	prt_mpc5xxx_clks,  #endif /* CONFIG_MPC5xxx */ diff --git a/include/common.h b/include/common.h index 672c0b5c1..08b294cfd 100644 --- a/include/common.h +++ b/include/common.h @@ -304,7 +304,14 @@ extern ulong monitor_flash_len;  int mac_read_from_eeprom(void);  extern u8 __dtb_dt_begin[];	/* embedded device tree blob */  int set_cpu_clk_info(void); +#if defined(CONFIG_DISPLAY_CPUINFO)  int print_cpuinfo(void); +#else +static inline int print_cpuinfo(void) +{ +	return 0; +} +#endif  int update_flash_size(int flash_size);  /** |