diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2012-02-23 14:29:23 -0700 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2012-02-23 20:18:55 -0700 |
commit | 47087700ce3ccb2bf69f4dcb6ad7f59764e51308 (patch) | |
tree | a5c59cb190882dfc72026c32308c22aaa5344d05 /drivers/pci | |
parent | 823806ff6bd63f92644a5330cf0c3b68fac25ffd (diff) | |
download | blackbird-obmc-linux-47087700ce3ccb2bf69f4dcb6ad7f59764e51308.tar.gz blackbird-obmc-linux-47087700ce3ccb2bf69f4dcb6ad7f59764e51308.zip |
PCI: make pci_flags always available
If we move resource assignment functions into the core, we'll still
need a way for architectures to prevent reassignment, e.g., the
"pci_probe_only" functionality, and we'll need a generic, always
available way the core can test for that. The "pci_flags"
arrangement used by several architectures seems like a convenient
way to do this.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/setup-bus.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/pci/setup-bus.c b/drivers/pci/setup-bus.c index 2991a8975064..6db307fa20f5 100644 --- a/drivers/pci/setup-bus.c +++ b/drivers/pci/setup-bus.c @@ -25,8 +25,11 @@ #include <linux/ioport.h> #include <linux/cache.h> #include <linux/slab.h> +#include <asm-generic/pci-bridge.h> #include "pci.h" +unsigned int __weak pci_flags; + struct pci_dev_resource { struct list_head list; struct resource *res; |