diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2023-06-06 20:37:42 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-06-20 20:56:27 -0400 |
commit | e0afedb64085d02c7a3b156f77f6c71d0836e583 (patch) | |
tree | 0b3f51fa191adfdebf32a613735bc22e00265fac /include | |
parent | 1b086da5cd7fc66d3ef4e096ade3fabdde99c9e0 (diff) | |
download | u-boot-e0afedb64085d02c7a3b156f77f6c71d0836e583.tar.gz |
stdio: Remove stdio_init()
This function is not used by anyone.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/stdio_dev.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/stdio_dev.h b/include/stdio_dev.h index 3105928970d..77bf8a8970f 100644 --- a/include/stdio_dev.h +++ b/include/stdio_dev.h @@ -84,13 +84,6 @@ int stdio_init_tables(void); */ int stdio_add_devices(void); -/** - * stdio_init() - Sets up stdio ready for use - * - * This calls stdio_init_tables() and stdio_add_devices() - */ -int stdio_init(void); - void stdio_print_current_devices(void); /** |