diff options
author | Robert Richter <robert.richter@amd.com> | 2008-06-12 14:19:23 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-08 01:47:39 -0400 |
commit | 3a27dd1ce5de08e21e0266ddf00e6f1f843bfe8b (patch) | |
tree | b72316cfbe10d1f955a0cb9553879fb2bb14344b /arch/x86/pci/direct.c | |
parent | 24bfdca7b7da971ef9a483303a096ac6d4b3a02c (diff) |
x86: Move PCI IO ECS code to x86/pci
"Form follows function". Code is now where it belongs to.
Signed-off-by: Robert Richter <robert.richter@amd.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/pci/direct.c')
-rw-r--r-- | arch/x86/pci/direct.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/arch/x86/pci/direct.c b/arch/x86/pci/direct.c index 27d61b63def6..9915293500fb 100644 --- a/arch/x86/pci/direct.c +++ b/arch/x86/pci/direct.c | |||
@@ -265,14 +265,16 @@ void __init pci_direct_init(int type) | |||
265 | type); | 265 | type); |
266 | if (type == 1) { | 266 | if (type == 1) { |
267 | raw_pci_ops = &pci_direct_conf1; | 267 | raw_pci_ops = &pci_direct_conf1; |
268 | if (!raw_pci_ext_ops && cpu_has_pci_ext_cfg) { | 268 | if (raw_pci_ext_ops) |
269 | printk(KERN_INFO "PCI: Using configuration type 1 " | 269 | return; |
270 | "for extended access\n"); | 270 | if (!(pci_probe & PCI_HAS_IO_ECS)) |
271 | raw_pci_ext_ops = &pci_direct_conf1; | 271 | return; |
272 | } | 272 | printk(KERN_INFO "PCI: Using configuration type 1 " |
273 | } else { | 273 | "for extended access\n"); |
274 | raw_pci_ops = &pci_direct_conf2; | 274 | raw_pci_ext_ops = &pci_direct_conf1; |
275 | return; | ||
275 | } | 276 | } |
277 | raw_pci_ops = &pci_direct_conf2; | ||
276 | } | 278 | } |
277 | 279 | ||
278 | int __init pci_direct_probe(void) | 280 | int __init pci_direct_probe(void) |