diff options
author | Mario Six | 2018-08-06 10:23:41 +0200 |
---|---|---|
committer | Simon Glass | 2018-11-14 09:16:27 -0800 |
commit | 5d6c61ac404c5c7c463ea6ee216145f29a603f60 (patch) | |
tree | b6df389996f0550fcf271563eaf2d5e9d1f8deee /include/init.h | |
parent | 208ecbad2ea83333e8f3c9933213867addf16f4a (diff) |
board_f: Use static print_cpuinfo if CONFIG_CPU is active
When the DM CPU drivers are active, printing information about a CPU
should be delegated to a matching driver.
Hence, add a static print_cpuinfo that implements this delegation when
DM CPU drivers are active.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Mario Six <mario.six@gdsys.cc>
Changed condition to CONFIG_IS_ENABLED(CPU):
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/init.h')
-rw-r--r-- | include/init.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/init.h b/include/init.h index a58d7a6917f..afc953d51e2 100644 --- a/include/init.h +++ b/include/init.h @@ -109,7 +109,14 @@ int arch_reserve_stacks(void); */ int init_cache_f_r(void); +#if !CONFIG_IS_ENABLED(CPU) +/** + * print_cpuinfo() - Display information about the CPU + * + * Return: 0 if OK, -ve on error + */ int print_cpuinfo(void); +#endif int timer_init(void); int reserve_mmu(void); int misc_init_f(void); |