[PATCH] PCI express must be initialized before PCI hotplug

PCI express hotplug uses the pcieportbus driver so pcie must be
initialized before hotplug/. This patch changes the link order.

Signed-Off-By: Milton Miller <miltonm@bga.com>
Acked-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Milton Miller and committed by Linus Torvalds 52f975ea dfded4ae

+3 -4
+3 -4
drivers/pci/Makefile
··· 6 6 pci-driver.o search.o pci-sysfs.o rom.o setup-res.o 7 7 obj-$(CONFIG_PROC_FS) += proc.o 8 8 9 + # Build PCI Express stuff if needed 10 + obj-$(CONFIG_PCIEPORTBUS) += pcie/ 11 + 9 12 obj-$(CONFIG_HOTPLUG) += hotplug.o 10 13 11 14 # Build the PCI Hotplug drivers if we were asked to ··· 43 40 ifeq ($(CONFIG_PCI_DEBUG),y) 44 41 EXTRA_CFLAGS += -DDEBUG 45 42 endif 46 - 47 - # Build PCI Express stuff if needed 48 - obj-$(CONFIG_PCIEPORTBUS) += pcie/ 49 -