From 4aad794a8a4233059334937fea541167a97b395b Mon Sep 17 00:00:00 2001 From: "Robert P. J. Day" Date: Sat, 20 Oct 2007 00:19:06 +0200 Subject: [PATCH] BOOT: Show that no_ipi_broadcast() takes a parameter. a rather obvious fix given the opening of the function: ... static __init int no_ipi_broadcast(char *str) { get_option(&str, &no_broadcast); ... Signed-off-by: Robert P. J. Day Signed-off-by: Adrian Bunk --- arch/x86/mach-default/setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/mach-default/setup.c b/arch/x86/mach-default/setup.c index 3f08010f3517..47207ca71045 100644 --- a/arch/x86/mach-default/setup.c +++ b/arch/x86/mach-default/setup.c @@ -131,7 +131,7 @@ static __init int no_ipi_broadcast(char *str) return 1; } -__setup("no_ipi_broadcast", no_ipi_broadcast); +__setup("no_ipi_broadcast=", no_ipi_broadcast); static int __init print_ipi_mode(void) { -- 2.39.2