diff options
author | Arvind Sankar <nivedita@alum.mit.edu> | 2020-01-31 01:20:04 +0300 |
---|---|---|
committer | Ard Biesheuvel <ardb@kernel.org> | 2020-02-23 01:37:37 +0300 |
commit | f32ea1cd124c9a8b847e33123d156cb55699fa51 (patch) | |
tree | 6a9690af61f31a7588c625d818c0be1a194711e1 /arch/x86/boot/compressed/eboot.c | |
parent | 8a3abe30de9fffec8b44adeb78f93ecb0f09b0c5 (diff) | |
download | linux-f32ea1cd124c9a8b847e33123d156cb55699fa51.tar.xz |
efi/x86: Mark setup_graphics static
This function is only called from efi_main in the same source file.
Signed-off-by: Arvind Sankar <nivedita@alum.mit.edu>
Link: https://lore.kernel.org/r/20200130222004.1932152-1-nivedita@alum.mit.edu
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'arch/x86/boot/compressed/eboot.c')
-rw-r--r-- | arch/x86/boot/compressed/eboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/boot/compressed/eboot.c b/arch/x86/boot/compressed/eboot.c index c92fe0b75cec..32423e83ba8f 100644 --- a/arch/x86/boot/compressed/eboot.c +++ b/arch/x86/boot/compressed/eboot.c @@ -315,7 +315,7 @@ free_handle: return status; } -void setup_graphics(struct boot_params *boot_params) +static void setup_graphics(struct boot_params *boot_params) { efi_guid_t graphics_proto = EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID; struct screen_info *si; |