mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-28 08:35:38 +00:00
console: Make stdio_print_current_devices() static
As it is only called in common/console.c Signed-off-by: Bin Meng <bmeng@tinylab.org> Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org> # qemu-x86_64
This commit is contained in:
parent
142276ce51
commit
75bfc6fac5
2 changed files with 1 additions and 3 deletions
|
@ -1010,7 +1010,7 @@ int console_init_f(void)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void stdio_print_current_devices(void)
|
static void stdio_print_current_devices(void)
|
||||||
{
|
{
|
||||||
/* Print information */
|
/* Print information */
|
||||||
puts("In: ");
|
puts("In: ");
|
||||||
|
|
|
@ -84,8 +84,6 @@ int stdio_init_tables(void);
|
||||||
*/
|
*/
|
||||||
int stdio_add_devices(void);
|
int stdio_add_devices(void);
|
||||||
|
|
||||||
void stdio_print_current_devices(void);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* stdio_deregister_dev() - deregister the device "devname".
|
* stdio_deregister_dev() - deregister the device "devname".
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Reference in a new issue