Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754428AbYAXGlH (ORCPT ); Thu, 24 Jan 2008 01:41:07 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751847AbYAXGkz (ORCPT ); Thu, 24 Jan 2008 01:40:55 -0500 Received: from gate.crashing.org ([63.228.1.57]:54684 "EHLO gate.crashing.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750928AbYAXGkz (ORCPT ); Thu, 24 Jan 2008 01:40:55 -0500 Date: Thu, 24 Jan 2008 00:38:20 -0600 (CST) From: Kumar Gala X-X-Sender: galak@blarg.am.freescale.net To: benh@kernel.crashing.org cc: Greg KH , linux-pci@atrey.karlin.mff.cuni.cz, Paul Mackerras , linux-kernel@vger.kernel.org, linuxppc-dev@ozlabs.org Subject: [PATCH v2][POWERPC] Always build setup-bus.c on powerpc In-Reply-To: <8642742F-E8BF-43C7-9FE4-AAF54855ECF7@kernel.crashing.org> Message-ID: References: <1201156120.6815.48.camel@pasglop> <8642742F-E8BF-43C7-9FE4-AAF54855ECF7@kernel.crashing.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1194 Lines: 36 The common arch/powerpc code calls in to functions in setup-bus.c so some builds of ppc32 would fail. Note, ppc32 usage of setup-irq.c is limited to arch/ppc and should be removed when arch/ppc goes away. Signed-off-by: Kumar Gala Signed-off-by: Greg Kroah-Hartman --- Here's the proper diff, will send this via paulus. drivers/pci/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/pci/Makefile b/drivers/pci/Makefile index 5550556..f697f3d 100644 --- a/drivers/pci/Makefile +++ b/drivers/pci/Makefile @@ -32,7 +32,7 @@ obj-$(CONFIG_ARM) += setup-bus.o setup-irq.o obj-$(CONFIG_PARISC) += setup-bus.o obj-$(CONFIG_SUPERH) += setup-bus.o setup-irq.o obj-$(CONFIG_PPC32) += setup-irq.o -obj-$(CONFIG_PPC64) += setup-bus.o +obj-$(CONFIG_PPC) += setup-bus.o obj-$(CONFIG_MIPS) += setup-bus.o setup-irq.o obj-$(CONFIG_X86_VISWS) += setup-irq.o -- 1.5.3.7 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/