All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] riscv: fix build warning of missing prototypes
@ 2020-06-01  3:55 ` Zong Li
  0 siblings, 0 replies; 8+ messages in thread
From: Zong Li @ 2020-06-01  3:55 UTC (permalink / raw)
  To: paul.walmsley, palmer, linux-riscv, linux-kernel
  Cc: kbuild test robot, Zong Li

Add the missing header in file, it was losed in original implementation.

The warning message as follows:
 - no previous prototype for 'patch_text_nosync' [-Wmissing-prototypes]
 - no previous prototype for 'patch_text' [-Wmissing-prototypes]

Signed-off-by: Zong Li <zong.li@sifive.com>
Reported-by: kbuild test robot <lkp@intel.com>
---
 arch/riscv/kernel/patch.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/riscv/kernel/patch.c b/arch/riscv/kernel/patch.c
index 5805791cd5b5..d4a64dfed342 100644
--- a/arch/riscv/kernel/patch.c
+++ b/arch/riscv/kernel/patch.c
@@ -11,6 +11,7 @@
 #include <asm/kprobes.h>
 #include <asm/cacheflush.h>
 #include <asm/fixmap.h>
+#include <asm/patch.h>
 
 struct patch_insn {
 	void *addr;
-- 
2.26.2



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

end of thread, other threads:[~2020-06-05  0:01 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-01  3:55 [PATCH] riscv: fix build warning of missing prototypes Zong Li
2020-06-01  3:55 ` Zong Li
2020-06-01  6:47 ` Andreas Schwab
2020-06-01  6:47   ` Andreas Schwab
2020-06-01  6:56   ` Zong Li
2020-06-01  6:56     ` Zong Li
2020-06-05  0:01 ` Palmer Dabbelt
2020-06-05  0:01   ` Palmer Dabbelt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.