All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] parisc: Fix no previous prototype for 'toc_intr' warning in toc.c
@ 2022-01-17  9:11 Helge Deller
  0 siblings, 0 replies; only message in thread
From: Helge Deller @ 2022-01-17  9:11 UTC (permalink / raw)
  To: linux-parisc
  Cc: James Bottomley, John David Anglin, Sven Schnelle, kernel test robot

Fix a missing prototype warning noticed by the kernel test robot.

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Helge Deller <deller@gmx.de>
---
 arch/parisc/include/asm/processor.h | 1 +
 arch/parisc/kernel/toc.c            | 1 +
 2 files changed, 2 insertions(+)

diff --git a/arch/parisc/include/asm/processor.h b/arch/parisc/include/asm/processor.h
index b669f4b9040b..8793137deac5 100644
--- a/arch/parisc/include/asm/processor.h
+++ b/arch/parisc/include/asm/processor.h
@@ -289,6 +289,7 @@ extern int _parisc_requires_coherency;

 extern int running_on_qemu;

+extern void toc_intr(struct pt_regs *regs);
 extern void toc_handler(void);
 extern unsigned int toc_handler_size;
 extern unsigned int toc_handler_csum;
diff --git a/arch/parisc/kernel/toc.c b/arch/parisc/kernel/toc.c
index fa5a10eaf0aa..e4b48d07afbd 100644
--- a/arch/parisc/kernel/toc.c
+++ b/arch/parisc/kernel/toc.c
@@ -10,6 +10,7 @@
 #include <asm/pdc.h>
 #include <asm/pdc_chassis.h>
 #include <asm/ldcw.h>
+#include <asm/processor.h>

 static unsigned int __aligned(16) toc_lock = 1;
 DEFINE_PER_CPU_PAGE_ALIGNED(char [16384], toc_stack) __visible;
--
2.31.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-01-17  9:13 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-17  9:11 [PATCH] parisc: Fix no previous prototype for 'toc_intr' warning in toc.c Helge Deller

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.