From: Greg KH To: marcelo@conectiva.com.br Cc: linux-kernel@vger.kernel.org, pcihpd-discuss@lists.sourceforge.net Subject: [BK PATCH] PCI Hotplug changes for 2.4.20-pre1 Hi, This includes an ACPI PCI Hotplug driver update, and a IBM PCI Hotplug driver update, both of which have been in the -ac kernel for a while. Pull from: bk://linuxusb.bkbits.net/pci_hp-2.4 Patches will follow (warning, the ACPI one is big, so I will not send that to the mailing lists, it can be found at: http://www.kernel.org/pub/linux/kernel/people/gregkh/hotplug/2.4/pci_hp-acpiphp-2.4.20-pre1.patch ) thanks, greg k-h drivers/hotplug/pcihp_acpi.c | 397 --------- drivers/hotplug/pcihp_acpi.h | 231 ----- drivers/hotplug/pcihp_acpi_ctrl.c | 642 ---------------- drivers/hotplug/pcihp_acpi_glue.c | 757 ------------------- drivers/hotplug/Makefile | 14 drivers/hotplug/acpiphp.h | 322 ++++++++ drivers/hotplug/acpiphp_core.c | 470 +++++++++++ drivers/hotplug/acpiphp_glue.c | 1514 ++++++++++++++++++++++++++++++++++++++ drivers/hotplug/acpiphp_pci.c | 763 +++++++++++++++++++ drivers/hotplug/acpiphp_res.c | 708 +++++++++++++++++ drivers/hotplug/ibmphp.h | 18 drivers/hotplug/ibmphp_core.c | 208 +++-- drivers/hotplug/ibmphp_ebda.c | 65 + drivers/hotplug/ibmphp_hpc.c | 141 +-- 14 files changed, 4064 insertions(+), 2186 deletions(-) ------ ChangeSet@1.686, 2002-08-06 12:04:18-07:00, greg@kroah.com IBM PCI Hotplug driver update This brings the driver up to the latest version, and includes the following fixes: - timeout bug fixed (now large number of slots do not cause problems.) - more different types of hardware supported. - more slot information is now tracked. drivers/hotplug/ibmphp.h | 18 ++- drivers/hotplug/ibmphp_core.c | 208 ++++++++++++++++++++++++++++++++---------- drivers/hotplug/ibmphp_ebda.c | 65 ++++++++----- drivers/hotplug/ibmphp_hpc.c | 141 ++++++++++++---------------- 4 files changed, 279 insertions(+), 153 deletions(-) ------ ChangeSet@1.685, 2002-08-06 12:00:20-07:00, greg@kroah.com ACPI PCI Hotplug driver update This is from Takayoshi KOCHI drivers/hotplug/pcihp_acpi.c | 397 --------- drivers/hotplug/pcihp_acpi.h | 231 ----- drivers/hotplug/pcihp_acpi_ctrl.c | 642 ---------------- drivers/hotplug/pcihp_acpi_glue.c | 757 ------------------- drivers/hotplug/Makefile | 14 drivers/hotplug/acpiphp.h | 322 ++++++++ drivers/hotplug/acpiphp_core.c | 470 +++++++++++ drivers/hotplug/acpiphp_glue.c | 1514 ++++++++++++++++++++++++++++++++++++++ drivers/hotplug/acpiphp_pci.c | 763 +++++++++++++++++++ drivers/hotplug/acpiphp_res.c | 708 +++++++++++++++++ 10 files changed, 3785 insertions(+), 2033 deletions(-)