public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH][2.6.12-rc1-mm1] fix compile error in ppc64 prom.c
@ 2005-03-21 15:19 Mikael Pettersson
  2005-03-21 16:45 ` Nathan Lynch
  2005-03-21 21:55 ` Paul Mackerras
  0 siblings, 2 replies; 4+ messages in thread
From: Mikael Pettersson @ 2005-03-21 15:19 UTC (permalink / raw)
  To: akpm, paulus; +Cc: linux-kernel, linuxppc64-dev

Compiling 2.6.12-rc1-mm1 for ppc64 fails with:

arch/ppc64/kernel/prom.c:1691: error: syntax error before 'prom_reconfig_notifier'
arch/ppc64/kernel/prom.c:1692: error: field name not in record or union initializer
arch/ppc64/kernel/prom.c:1692: error: (near initialization for 'prom_reconfig_nb')
arch/ppc64/kernel/prom.c:1692: warning: initialization makes pointer from integer without a cast
make[1]: *** [arch/ppc64/kernel/prom.o] Error 1
make: *** [arch/ppc64/kernel] Error 2

Fix: repair the obvious syntax error (missing "=").

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

--- linux-2.6.12-rc1-mm1/arch/ppc64/kernel/prom.c.~1~	2005-03-21 14:48:51.000000000 +0100
+++ linux-2.6.12-rc1-mm1/arch/ppc64/kernel/prom.c	2005-03-21 15:14:19.000000000 +0100
@@ -1688,7 +1688,7 @@ static int prom_reconfig_notifier(struct
 }
 
 static struct notifier_block prom_reconfig_nb = {
-	.notifier_call prom_reconfig_notifier,
+	.notifier_call = prom_reconfig_notifier,
 	.priority = 10, /* This one needs to run first */
 };
 

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

end of thread, other threads:[~2005-03-21 23:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-21 15:19 [PATCH][2.6.12-rc1-mm1] fix compile error in ppc64 prom.c Mikael Pettersson
2005-03-21 16:45 ` Nathan Lynch
2005-03-21 21:55 ` Paul Mackerras
2005-03-21 22:56   ` Nathan Lynch

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