bootm: Rename fixup_silent_linux()

We want to add more processing to this function. Before doing so, rename
it to bootm_process_cmdline_env(), which is more generic.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2020-11-05 10:33:40 -07:00
committed by Tom Rini
parent 4ae42643d0
commit 4dcb81545a
3 changed files with 9 additions and 9 deletions

View File

@@ -86,13 +86,13 @@ void arch_preboot_os(void);
void board_preboot_os(void);
/*
* fixup_silent_linux() - Process fix-ups for the command line
* bootm_process_cmdline_env() - Process fix-ups for the command line
*
* Updates the 'bootargs' envvar as required. This handles making Linux boot
* silently if requested ('silent_linux' envvar)
*
* @return 0 if OK, -ENOMEM if out of memory
*/
int fixup_silent_linux(void);
int bootm_process_cmdline_env(void);
#endif