projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
22090f8
)
efi/libstub/arm: Make install_memreserve_table static
author
Zou Wei
<zou_wei@huawei.com>
Thu, 23 Apr 2020 12:08:33 +0000
(20:08 +0800)
committer
Ard Biesheuvel
<ardb@kernel.org>
Thu, 23 Apr 2020 18:15:06 +0000
(20:15 +0200)
Fix the following sparse warning:
drivers/firmware/efi/libstub/arm-stub.c:68:6: warning:
symbol 'install_memreserve_table' was not declared. Should it be static?
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zou Wei <zou_wei@huawei.com>
Link:
https://lore.kernel.org/r/1587643713-28169-1-git-send-email-zou_wei@huawei.com
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
drivers/firmware/efi/libstub/efi-stub.c
patch
|
blob
|
history
diff --git
a/drivers/firmware/efi/libstub/efi-stub.c
b/drivers/firmware/efi/libstub/efi-stub.c
index 99a5cde7c2d8fc52e914e4c7f2e38a8dc91c4f58..8a26cc11ca4af711558c7ddc1d8c635aa4bb5d3a 100644
(file)
--- a/
drivers/firmware/efi/libstub/efi-stub.c
+++ b/
drivers/firmware/efi/libstub/efi-stub.c
@@
-65,7
+65,7
@@
static struct screen_info *setup_graphics(void)
return si;
}
-void install_memreserve_table(void)
+
static
void install_memreserve_table(void)
{
struct linux_efi_memreserve *rsv;
efi_guid_t memreserve_table_guid = LINUX_EFI_MEMRESERVE_TABLE_GUID;