linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] powerpc: Fix build of 4xx simple platforms without CONFIG_PCI
@ 2008-12-08  4:53 Benjamin Herrenschmidt
  2008-12-08  5:32 ` Michael Ellerman
  0 siblings, 1 reply; 6+ messages in thread
From: Benjamin Herrenschmidt @ 2008-12-08  4:53 UTC (permalink / raw)
  To: Josh Boyer; +Cc: linuxppc-dev

The global ppc_pci_flags is not defined when CONFIG_PCI is not
set, causing a link error

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
---

 arch/powerpc/platforms/40x/ppc40x_simple.c |    2 ++
 arch/powerpc/platforms/44x/ppc44x_simple.c |    2 ++
 2 files changed, 4 insertions(+)

--- linux-work.orig/arch/powerpc/platforms/40x/ppc40x_simple.c	2008-12-08 15:51:49.000000000 +1100
+++ linux-work/arch/powerpc/platforms/40x/ppc40x_simple.c	2008-12-08 15:51:52.000000000 +1100
@@ -61,7 +61,9 @@ static int __init ppc40x_probe(void)
 
 	for (i = 0; i < ARRAY_SIZE(board); i++) {
 		if (of_flat_dt_is_compatible(root, board[i])) {
+#ifdef CONFIG_PCI
 			ppc_pci_flags = PPC_PCI_REASSIGN_ALL_RSRC;
+#endif
 			return 1;
 		}
 	}
Index: linux-work/arch/powerpc/platforms/44x/ppc44x_simple.c
===================================================================
--- linux-work.orig/arch/powerpc/platforms/44x/ppc44x_simple.c	2008-12-08 15:51:31.000000000 +1100
+++ linux-work/arch/powerpc/platforms/44x/ppc44x_simple.c	2008-12-08 15:51:39.000000000 +1100
@@ -70,7 +70,9 @@ static int __init ppc44x_probe(void)
 
 	for (i = 0; i < ARRAY_SIZE(board); i++) {
 		if (of_flat_dt_is_compatible(root, board[i])) {
+#ifdef CONFIG_PCI
 			ppc_pci_flags = PPC_PCI_REASSIGN_ALL_RSRC;
+#endif
 			return 1;
 		}
 	}

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

end of thread, other threads:[~2008-12-10 21:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-08  4:53 [PATCH] powerpc: Fix build of 4xx simple platforms without CONFIG_PCI Benjamin Herrenschmidt
2008-12-08  5:32 ` Michael Ellerman
2008-12-08  5:38   ` Benjamin Herrenschmidt
2008-12-10 14:25     ` Josh Boyer
2008-12-10 19:06       ` Josh Boyer
2008-12-10 21:59       ` Michael Ellerman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).