lkml.org 
[lkml]   [2022]   [May]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] MIPS: Export _machine_restart to modules
Date
From: huhai <huhai@kylinos.cn>

modpost complains once these drivers become modules.
ERROR: modpost: "_machine_restart" [drivers/char/tb0219.ko] undefined!

Fix it by export them when that symbol is =m.

Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Signed-off-by: huhai <huhai@kylinos.cn>
---
arch/mips/kernel/reset.c | 3 +++
1 file changed, 3 insertions(+)

diff --git a/arch/mips/kernel/reset.c b/arch/mips/kernel/reset.c
index 6288780b779e..f3420a871087 100644
--- a/arch/mips/kernel/reset.c
+++ b/arch/mips/kernel/reset.c
@@ -24,6 +24,9 @@
* functions.
*/
void (*_machine_restart)(char *command);
+#ifdef CONFIG_GPIO_TB0219_MODULE
+EXPORT_SYMBOL_GPL(_machine_restart);
+#endif
void (*_machine_halt)(void);
void (*pm_power_off)(void);

--
2.27.0
\
 
 \ /
  Last update: 2022-05-25 03:28    [W:1.482 / U:0.048 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site