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>
This commit is contained in:
Masahiro Yamada 2023-06-06 20:37:42 +09:00 committed by Tom Rini
parent 1b086da5cd
commit e0afedb640
2 changed files with 0 additions and 15 deletions

View file

@ -386,11 +386,3 @@ int stdio_add_devices(void)
return 0;
}
int stdio_init(void)
{
stdio_init_tables();
stdio_add_devices();
return 0;
}

View file

@ -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);
/**