diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-02-13 18:30:26 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-02-19 11:10:05 -0500 |
commit | 365475e6d14bc1ea9d218c0fd1fe96878a9db94e (patch) | |
tree | d4730d8b64f9ce6437353cf23009645d030446c3 /board/freescale/mx53loco | |
parent | 2f13363b0913afe910c22c0f9c12946c6603b1c2 (diff) | |
download | u-boot-imx-365475e6d14bc1ea9d218c0fd1fe96878a9db94e.zip u-boot-imx-365475e6d14bc1ea9d218c0fd1fe96878a9db94e.tar.gz u-boot-imx-365475e6d14bc1ea9d218c0fd1fe96878a9db94e.tar.bz2 |
Move #ifdef(CONFIG_DISPLAY_CPUINFO) from caller to callee
- When CONFIG_DISPLAY_CPUINFO is not enabled,
print_cpuinfo() should be defined as an empty function
in a header, include/common.h
- Remove #ifdef CONFIG_DISPLAY_CPUINFO .. #endif
from caller, common/board_f.c and arch/arm/lib/board.c
- Remove redundant prototypes in arch/arm/lib/board.c,
arch/arm/include/asm/arch-am33x/sys_proto.h and
board/nokia/rx51/rx51.h, keeping the one in include/common.h
- Add #ifdef CONFIG_DISPLAY_CPUINFO to the func definition
where it is missing
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'board/freescale/mx53loco')
-rw-r--r-- | board/freescale/mx53loco/mx53loco.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/freescale/mx53loco/mx53loco.c b/board/freescale/mx53loco/mx53loco.c index db0bf17..08dd66f 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 |