mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-05 04:36:13 +02:00
x86: cpu: Describe board final hooks in the header
The new two declarations board_final_init() and board_final_cleanup() need a description. Add it here. Suggested-by: Simon Glass <sjg@chromium.org> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
ffd5d9cc27
commit
f183d2c56b
@ -267,7 +267,20 @@ u32 cpu_get_family_model(void);
|
||||
*/
|
||||
u32 cpu_get_stepping(void);
|
||||
|
||||
/**
|
||||
* board_final_init() - Final initialization hook (optional)
|
||||
*
|
||||
* Implements a custom initialization for boards that need to do it
|
||||
* before the system is ready.
|
||||
*/
|
||||
void board_final_init(void);
|
||||
|
||||
/**
|
||||
* board_final_cleanup() - Final cleanup hook (optional)
|
||||
*
|
||||
* Implements a custom cleanup for boards that need to do it before
|
||||
* booting the OS.
|
||||
*/
|
||||
void board_final_cleanup(void);
|
||||
|
||||
#ifndef CONFIG_EFI_STUB
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user