linux-efi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] efi:mokvar-table: fix build error
@ 2020-10-09  8:51 Xiaoming Ni
  2020-10-09  8:52 ` Ard Biesheuvel
  0 siblings, 1 reply; 2+ messages in thread
From: Xiaoming Ni @ 2020-10-09  8:51 UTC (permalink / raw)
  To: ardb, linux-efi, linux-kernel; +Cc: nixiaoming, wangle6

drivers/firmware/efi/mokvar-table.c:139:5: error: implicit declaration of
 function 'early_memunmap'; did you mean 'devm_memunmap'?
 [-Werror=implicit-function-declaration]
drivers/firmware/efi/mokvar-table.c:148:9: error: implicit declaration of
 function 'early_memremap'; did you mean 'devm_memremap'?
 [-Werror=implicit-function-declaration]

add #include <asm/early_ioremap.h> to fix this build error

Signed-off-by: Xiaoming Ni <nixiaoming@huawei.com>
---
 drivers/firmware/efi/mokvar-table.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/firmware/efi/mokvar-table.c b/drivers/firmware/efi/mokvar-table.c
index 72a9e1736fef..c23d3686f1c7 100644
--- a/drivers/firmware/efi/mokvar-table.c
+++ b/drivers/firmware/efi/mokvar-table.c
@@ -39,6 +39,7 @@
 #include <linux/kobject.h>
 #include <linux/list.h>
 #include <linux/slab.h>
+#include <asm/early_ioremap.h>
 
 /*
  * The LINUX_EFI_MOK_VARIABLE_TABLE_GUID config table is a packed
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-10-09  8:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-09  8:51 [PATCH] efi:mokvar-table: fix build error Xiaoming Ni
2020-10-09  8:52 ` Ard Biesheuvel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).