public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2.6.12-rc1-mm2] x86_64: fix vsyscall.c syntax error
@ 2005-03-24 18:42 Mikael Pettersson
  2005-03-28 15:27 ` Andi Kleen
  0 siblings, 1 reply; 2+ messages in thread
From: Mikael Pettersson @ 2005-03-24 18:42 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel

Compiling 2.6.12-rc1-mm2 on x86_64 with gcc-4.0 fails with:

arch/x86_64/kernel/vsyscall.c:193: error: syntax error before 'vsyscall_sysctl_change'

Fix: repair the syntax error

Signed-off-by: Mikael Pettersson <mikpe@csd.uu.se>

--- linux-2.6.12-rc1-mm2/arch/x86_64/kernel/vsyscall.c.~1~	2005-03-24 16:33:50.000000000 +0100
+++ linux-2.6.12-rc1-mm2/arch/x86_64/kernel/vsyscall.c	2005-03-24 19:31:40.000000000 +0100
@@ -190,7 +190,7 @@ static ctl_table kernel_table2[] = {
 	{ .ctl_name = 99, .procname = "vsyscall64",
 	  .data = &sysctl_vsyscall, .maxlen = sizeof(int), .mode = 0644,
 	  .strategy = vsyscall_sysctl_nostrat,
-	  .proc_handler vsyscall_sysctl_change },
+	  .proc_handler = vsyscall_sysctl_change },
 	{ 0, }
 };
 

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

end of thread, other threads:[~2005-03-28 15:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-24 18:42 [PATCH 2.6.12-rc1-mm2] x86_64: fix vsyscall.c syntax error Mikael Pettersson
2005-03-28 15:27 ` Andi Kleen

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