All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] MIPS: Remove useless parameter of the bootcmdline_init()
@ 2020-05-18  6:13 Zhi Li
  0 siblings, 0 replies; only message in thread
From: Zhi Li @ 2020-05-18  6:13 UTC (permalink / raw)
  To: Thomas Bogendoerfer; +Cc: Tiezhu Yang, Xuefeng Li, linux-mips, linux-kernel

The parameter "cmdline_p" is useless in bootcmdline_init(), remove it.

Signed-off-by: Zhi Li <lizhi01@loongson.cn>
---
 arch/mips/kernel/setup.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c
index 8db533c..7b537fa 100644
--- a/arch/mips/kernel/setup.c
+++ b/arch/mips/kernel/setup.c
@@ -575,7 +575,7 @@ static int __init bootcmdline_scan_chosen(unsigned long node, const char *uname,
 
 #endif /* CONFIG_OF_EARLY_FLATTREE */
 
-static void __init bootcmdline_init(char **cmdline_p)
+static void __init bootcmdline_init(void)
 {
 	bool dt_bootargs = false;
 
@@ -658,7 +658,7 @@ static void __init arch_mem_init(char **cmdline_p)
 	plat_mem_setup();
 	memblock_set_bottom_up(true);
 
-	bootcmdline_init(cmdline_p);
+	bootcmdline_init();
 	strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE);
 	*cmdline_p = command_line;
 
-- 
2.1.0


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

only message in thread, other threads:[~2020-05-18  6:13 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-18  6:13 [PATCH] MIPS: Remove useless parameter of the bootcmdline_init() Zhi Li

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.