diff options
Diffstat (limited to 'board')
| -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 | 
3 files changed, 4 insertions, 2 deletions
| 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 |