diff options
Diffstat (limited to 'drivers/pci/pci.c')
-rw-r--r-- | drivers/pci/pci.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 3c2fa2fdc9cd..48fa860276d4 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c | |||
@@ -2084,6 +2084,19 @@ static void __devinit pci_no_domains(void) | |||
2084 | #endif | 2084 | #endif |
2085 | } | 2085 | } |
2086 | 2086 | ||
2087 | /** | ||
2088 | * pci_ext_cfg_enabled - can we access extended PCI config space? | ||
2089 | * @dev: The PCI device of the root bridge. | ||
2090 | * | ||
2091 | * Returns 1 if we can access PCI extended config space (offsets | ||
2092 | * greater than 0xff). This is the default implementation. Architecture | ||
2093 | * implementations can override this. | ||
2094 | */ | ||
2095 | int __attribute__ ((weak)) pci_ext_cfg_avail(struct pci_dev *dev) | ||
2096 | { | ||
2097 | return 1; | ||
2098 | } | ||
2099 | |||
2087 | static int __devinit pci_init(void) | 2100 | static int __devinit pci_init(void) |
2088 | { | 2101 | { |
2089 | struct pci_dev *dev = NULL; | 2102 | struct pci_dev *dev = NULL; |