The patch titled
PCI: fix !CONFIG_HOTPLUG pci build problem
has been added to the -mm tree. Its filename is
pci-fix-config_hotplug-pci-build-problem.patch
Patches currently in -mm which might be from [EMAIL PROTECTED] are
pci-fix-config_hotplug-pci-build-problem.patch
From: Greg KH <[EMAIL PROTECTED]>
Here's a patch to fix the build issue when CONFIG_HOTPLUG is not enabled
in 2.6.13-rc2.
Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/pci/pci-driver.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff -puN drivers/pci/pci-driver.c~pci-fix-config_hotplug-pci-build-problem
drivers/pci/pci-driver.c
--- 25/drivers/pci/pci-driver.c~pci-fix-config_hotplug-pci-build-problem
Wed Jul 6 14:01:05 2005
+++ 25-akpm/drivers/pci/pci-driver.c Wed Jul 6 14:01:05 2005
@@ -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 mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html