diff options
author | Simon Glass <sjg@chromium.org> | 2020-11-05 10:33:40 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-12-04 16:09:26 -0500 |
commit | 4dcb81545ab09b6cb4ee1f3c870fb3131984cf6f (patch) | |
tree | 4388177afffd62d56b9d1c2a4a99313e7e216386 /include/bootm.h | |
parent | 4ae42643d0d71dbb5af45d19fa05b7a6807150c0 (diff) | |
download | u-boot-4dcb81545ab09b6cb4ee1f3c870fb3131984cf6f.tar.gz u-boot-4dcb81545ab09b6cb4ee1f3c870fb3131984cf6f.tar.bz2 u-boot-4dcb81545ab09b6cb4ee1f3c870fb3131984cf6f.zip |
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>
Diffstat (limited to 'include/bootm.h')
-rw-r--r-- | include/bootm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/bootm.h b/include/bootm.h index 438829af0f..35c27ab960 100644 --- a/include/bootm.h +++ b/include/bootm.h @@ -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 |