Messages in this thread Patch in this message |  | | Date | Wed, 6 Jul 2005 09:12:43 -0700 | From | Greg KH <> | Subject | Re: [PATCH] Fix 2.6.13rc2 compilation without CONFIG_HOTPLUG |
| |
On Wed, Jul 06, 2005 at 01:23:54PM +0200, Andi Kleen wrote: > > Otherwise PCI won't compile. > > Signed-off-by: Andi Kleen <ak@suse.de>
No, I like this patch better, it's cleaner and is what I intended the code to be. I've already sent it to Linus and the list.
thanks,
greg k-h
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> --- drivers/pci/pci-driver.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
--- gregkh-2.6.orig/drivers/pci/pci-driver.c 2005-07-06 01:03:26.000000000 -0700 +++ gregkh-2.6/drivers/pci/pci-driver.c 2005-07-06 09:07:09.000000000 -0700 @@ -17,13 +17,13 @@ * Dynamic device IDs are disabled for !CONFIG_HOTPLUG */ -#ifdef CONFIG_HOTPLUG - struct pci_dynid { struct list_head node; struct pci_device_id id; }; +#ifdef CONFIG_HOTPLUG + /** * store_new_id * - 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/
|  |