public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] init: fix the wrong __setup_param() definition
@ 2021-12-20  3:54 Yajun Deng
  2021-12-20 11:20 ` Marco Elver
  0 siblings, 1 reply; 3+ messages in thread
From: Yajun Deng @ 2021-12-20  3:54 UTC (permalink / raw)
  To: keescook, samitolvanen, ojeda, masahiroy, elver; +Cc: linux-kernel, Yajun Deng

The parameters in __setup_param() should be four rather than three when
MODULE isn't definited.

Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Signed-off-by: Yajun Deng <yajun.deng@linux.dev>
---
 include/linux/init.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/init.h b/include/linux/init.h
index d82b4b2e1d25..62a77850f10e 100644
--- a/include/linux/init.h
+++ b/include/linux/init.h
@@ -355,7 +355,7 @@ void __init parse_early_options(char *cmdline);
 
 #else /* MODULE */
 
-#define __setup_param(str, unique_id, fn)	/* nothing */
+#define __setup_param(str, unique_id, fn, early)/* nothing */
 #define __setup(str, func) 			/* nothing */
 #endif
 
-- 
2.32.0


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

end of thread, other threads:[~2021-12-21  2:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-20  3:54 [PATCH] init: fix the wrong __setup_param() definition Yajun Deng
2021-12-20 11:20 ` Marco Elver
2021-12-21  2:08   ` yajun.deng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox