diff options
| author | Bin Meng <[email protected]> | 2023-07-23 12:40:35 +0800 |
|---|---|---|
| committer | Leo Yu-Chi Liang <[email protected]> | 2023-08-02 16:32:02 +0800 |
| commit | 75bfc6fac5918eba48ddfe608f0a1c6a89d47168 (patch) | |
| tree | c3ebf45655eb2ffa94c2da5fa90b6b416c1e0517 /common/console.c | |
| parent | 142276ce51ba97eade1b70c7c7c91e0ada428284 (diff) | |
console: Make stdio_print_current_devices() static
As it is only called in common/console.c
Signed-off-by: Bin Meng <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Tested-by: Simon Glass <[email protected]> # qemu-x86_64
Diffstat (limited to 'common/console.c')
| -rw-r--r-- | common/console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/console.c b/common/console.c index 71ad8efd6f4..d0640ba05a9 100644 --- a/common/console.c +++ b/common/console.c @@ -1010,7 +1010,7 @@ int console_init_f(void) return 0; } -void stdio_print_current_devices(void) +static void stdio_print_current_devices(void) { /* Print information */ puts("In: "); |
