From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933343AbWF0Eaw (ORCPT ); Tue, 27 Jun 2006 00:30:52 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S933389AbWF0Eav (ORCPT ); Tue, 27 Jun 2006 00:30:51 -0400 Received: from mail.kroah.org ([69.55.234.183]:11501 "EHLO perch.kroah.org") by vger.kernel.org with ESMTP id S933343AbWF0Eav (ORCPT ); Tue, 27 Jun 2006 00:30:51 -0400 Date: Mon, 26 Jun 2006 21:27:50 -0700 From: Greg KH To: Dave Jones , Linux Kernel Subject: Re: pciehp borkage. Message-ID: <20060627042750.GA1768@suse.de> References: <20060627033749.GB26575@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060627033749.GB26575@redhat.com> User-Agent: Mutt/1.5.11 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jun 26, 2006 at 11:37:49PM -0400, Dave Jones wrote: > My head hurts.. > > drivers/pci/pcie/Kconfig .. > > config HOTPLUG_PCI_PCIE > tristate "PCI Express Hotplug driver" > depends on HOTPLUG_PCI && PCIEPORTBUS && (BROKEN || ACPI) > > > > but drivers/pci/hotplug/Makefile has.. > > pciehp-objs := pciehp_core.o \ > pciehp_ctrl.o \ > pciehp_pci.o \ > pciehp_hpc.o > > So it gets built regardless of the option, which leaves ppc (among others) > totally busted.. Yes, this driver does have issues on ppc, see the archives for Anton trying to fix it up to get it to build. But as ppc currently doesn't _have_ pci express hotplug hardware it really doesn't matter much :) > In file included from include/acpi/platform/acenv.h:140, > from include/acpi/acpi.h:54, > from drivers/pci/hotplug/pciehp_hpc.c:41: > include/acpi/platform/aclinux.h:59:22: error: asm/acpi.h: No such file or directory > In file included from include/acpi/acpi.h:55, > from drivers/pci/hotplug/pciehp_hpc.c:41: > include/acpi/actypes.h:129: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'UINT64' > include/acpi/actypes.h:130: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'INT64' > make[3]: *** [drivers/pci/hotplug/pciehp_hpc.o] Error 1 > make[2]: *** [drivers/pci/hotplug] Error 2 > make[1]: *** [drivers/pci] Error 2 > > > Should that Makefile be more along the lines of.. > > pciehp-$(CONFIG_PCI_PCIE) := pciehp_core.o \ > pciehp_ctrl.o \ > pciehp_pci.o \ > pciehp_hpc.o > > perhaps ? No, look up a bit higher: obj-$(CONFIG_HOTPLUG_PCI_PCIE) += pciehp.o which will build pciehp or not. Just don't enable the option for now on ppc please. Until people sanitize the ACPI headers for non-acpi arches (which is currently underway...) thanks, greg k-h