[PATCH V3 02/10] init.h: Fix the __setup_param() macro for module build

From: Anson Huang
Date: Mon Jun 29 2020 - 15:04:53 EST


Keep __setup_param() to use same parameters for both built in
and built as module, it can make the drivers which call it easier
when the drivers can be built in or built as module.

Signed-off-by: Anson Huang <Anson.Huang@xxxxxxx>
---
new patch.
---
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 212fc9e..8f27299 100644
--- a/include/linux/init.h
+++ b/include/linux/init.h
@@ -293,7 +293,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.7.4