From: Heinrich Schuchardt Date: Fri, 10 Feb 2023 07:51:41 +0000 (+0100) Subject: efi_loader: static functions in efi_console.c X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=e7175f9320d9806e4c36ca3715d923b2a7dfcc7f;p=u-boot.git efi_loader: static functions in efi_console.c Define function set_shift_mask() as static as it is not used externally. Signed-off-by: Heinrich Schuchardt --- diff --git a/lib/efi_loader/efi_console.c b/lib/efi_loader/efi_console.c index 1ed8c7aa36..4317630907 100644 --- a/lib/efi_loader/efi_console.c +++ b/lib/efi_loader/efi_console.c @@ -669,7 +669,7 @@ static LIST_HEAD(cin_notify_functions); * @mod: Xterm shift mask * @key_state: receives the state of the shift, alt, control, and logo keys */ -void set_shift_mask(int mod, struct efi_key_state *key_state) +static void set_shift_mask(int mod, struct efi_key_state *key_state) { key_state->key_shift_state = EFI_SHIFT_STATE_VALID; if (mod) {