diff options
author | Andi Kleen <ak@suse.de> | 2006-03-23 14:35:12 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-03-23 14:35:12 -0800 |
commit | 92c05fc1a32e5ccef5e0e8201f32dcdab041524c (patch) | |
tree | 71c0202dffee676d3b2e0b75ea4472aaa2ffe8df /arch/i386/pci/Makefile | |
parent | e4e73041ecc4a3559c42ed9489f58531c2a8646b (diff) | |
download | op-kernel-dev-92c05fc1a32e5ccef5e0e8201f32dcdab041524c.zip op-kernel-dev-92c05fc1a32e5ccef5e0e8201f32dcdab041524c.tar.gz |
[PATCH] PCI: Give PCI config access initialization a defined ordering
I moved it to a separate function which is safer.
This avoids problems with the linker reordering them and the
less useful PCI config space access methods taking priority
over the better ones.
Fixes some problems with broken MMCONFIG
Cc: Dave Hansen <haveblue@us.ibm.com>
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'arch/i386/pci/Makefile')
-rw-r--r-- | arch/i386/pci/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/pci/Makefile b/arch/i386/pci/Makefile index 5461d4d..62ad75c 100644 --- a/arch/i386/pci/Makefile +++ b/arch/i386/pci/Makefile @@ -1,4 +1,4 @@ -obj-y := i386.o +obj-y := i386.o init.o obj-$(CONFIG_PCI_BIOS) += pcbios.o obj-$(CONFIG_PCI_MMCONFIG) += mmconfig.o direct.o |